spelling: conversions

This commit is contained in:
Josh Soref 2021-11-04 00:35:19 -04:00
parent 167ccb49d7
commit cf5de3925e

View file

@ -172,7 +172,7 @@ end
a = nil
-- testing implicit convertions
-- testing implicit conversions
local a,b = '10', '20'
assert(a*b == 200 and a+b == 30 and a-b == -10 and a/b == 0.5 and -b == -20)