const isOutputShown = document.getElementById('isOutputShown')
const isGlForced = document.getElementById('isGlForced')
const isDebug = document.getElementById('isDebug')
- run(size.value, effort.value, isOutputShown.checked, isGlForced.checked, isDebug.checked)
+ run(+size.value, +effort.value, isOutputShown.checked, isGlForced.checked, isDebug.checked)
})
</script>
<style>body{background:black;color:white;}a{color:darkcyan;}input[type=number]{width:5em;}</style>