Files
argon-v3/tests/broken_funcCall.ar
William Bell c207c0668d Fix indentation and translation errors in doWrap,
forLoop, ifStatement, and whileLoop functions.
Also fix syntax error in broken_funcCall test
file.
2023-11-14 21:48:04 +00:00

15 lines
299 B
Plaintext

let x = do
let class = {}
class.f(path) = do
let wowww = {}
wowww.nice(callback) = callback()
return wowww
class.cool(path, callback) = do
let c = (class.f(path))
c.nice(callback)
return class.object()
forever do
x.cool("to", ()="epic")