Hacker News new | ask | show | jobs
by whoopdedo 3999 days ago
Lua is global by default. Declare all the variables as local and you'll see significant improvement. Also, there is a boolean type so you can use true and false directly instead of comparing numbers.
1 comments

I tried using locals, and there was no change to the time. Using a boolean return value for isPrime shaved off two seconds.