moonscript/tests/inputs/stub.moon
2011-10-09 15:58:39 -07:00

17 lines
150 B
Plaintext

x = {
val: 100
hello: =>
print @val
}
fn = x\val
print fn!
print x\val!
-- ... should be bubbled up anon functions
x = hello(...)\world