fix do wrap bugs

This commit is contained in:
2023-08-08 18:45:03 +01:00
parent 4020598315
commit 583e28b2f7
11 changed files with 92 additions and 71 deletions

View File

@@ -1,4 +1,4 @@
let toyTank(colour , name) = do
let toyTank(colour, name) = do
let class = {}
class.getColour() = do
term.log("My colour is", colour)

View File

@@ -4,4 +4,14 @@ do
let x = 20
term.log(x)
term.log(x)
term.log()
let x = 10
do
x = 20
term.log(x)
term.log(x)

0
tests/testing.ar Normal file
View File