kuroko/test/testEatWhitespace.krk

22 lines
150 B
Plaintext

def foo(a,b,c,d):
print a,b,c,d
foo(
a=1,
b=2,
c=3,
d=4
)
let l = [
1,2,
3,4
]
print l
for i in [1,2
3,4]:
print "lol",i