diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2018-01-16 01:44:50 -0800 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2018-01-16 01:44:50 -0800 |
| commit | 4c059a7f9b2aa87fa96251e5fb0c647eed13b2dd (patch) | |
| tree | c5adde80063da1685cb288d15d6d6a993c55a3ab /lib/math.nom | |
| parent | d82c4f85d8cdb1d4cdf97e90b2715d2fb06b4bef (diff) | |
Removed unnecessary semicolons that broke luajit.
Diffstat (limited to 'lib/math.nom')
| -rw-r--r-- | lib/math.nom | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/math.nom b/lib/math.nom index 9e9af98..4e78b7e 100644 --- a/lib/math.nom +++ b/lib/math.nom @@ -69,7 +69,7 @@ compile [max of %items by %value_expr] to: ".." action [seed random with %]: lua> ".." math.randomseed(\%); - for i=1,20 do; math.random(); end; + for i=1,20 do math.random(); end parse [seed random] as: seed random with (=lua "os.time()") compile [random number, random, rand] to: "math.random()" compile [random int %n, random integer %n, randint %n] to: "math.random(\(%n as lua))" |
