Change syntax for blocks -> fns.

This commit is contained in:
Bob Nystrom
2013-11-06 07:47:47 -08:00
parent c0c6020292
commit 8f6881c6a8
9 changed files with 98 additions and 63 deletions

View File

@ -1,6 +1,2 @@
io.write(1 + 2)
io.write(3 - 1)
io.write(10 / 3)
io.write(20 * 30)
io.write("abc" + "def")
io.write(1 + "string")
if (false) io.write("bad2")
if (false) io.write("bad")