Renamed game -> compiler.

This commit is contained in:
Bruce Hill 2017-09-12 22:23:36 -07:00
parent 4c912ad87b
commit 54c2959409

View File

@ -184,8 +184,8 @@ rule "say time":
|io.write(tostring(os.time()).."\n")
say time
printf ["Math expression: ", lua expr "(1 + 2*3 + 3*4)^2"]
(# In the lua environment, "vars" can be used to get local variables/function args, and "game"
can be used to access the compiler, function defs, and other things #)
(# In the lua environment, "vars" can be used to get local variables/function args, and
"compiler" can be used to access the compiler, function defs, and other things #)
rule "square root of %n":
return (lua expr "math.sqrt(vars.n)")
printf ["the square root of 2 is ", square root of 2]