diff options
Diffstat (limited to 'spec/inputs/bubbling.moon')
-rw-r--r-- | spec/inputs/bubbling.moon | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/spec/inputs/bubbling.moon b/spec/inputs/bubbling.moon index 62d1550..23a85d4 100644 --- a/spec/inputs/bubbling.moon +++ b/spec/inputs/bubbling.moon | |||
@@ -15,14 +15,13 @@ j = for i=1,10 | |||
15 | m = (...) -> | 15 | m = (...) -> |
16 | [x for x in *{...} when f(...) > 4] | 16 | [x for x in *{...} when f(...) > 4] |
17 | 17 | ||
18 | x = for i in *{...} do i | 18 | _ = (...)-> |
19 | y = [x for x in *{...}] | 19 | x = for i in *{...} do i |
20 | z = [x for x in hallo when f(...) > 4] | 20 | y = [x for x in *{...}] |
21 | z = [x for x in hallo when f(...) > 4] | ||
21 | 22 | ||
23 | a = for i=1,10 do ... | ||
22 | 24 | ||
23 | a = for i=1,10 do ... | 25 | b = for i=1,10 |
24 | 26 | (...)-> print ... | |
25 | b = for i=1,10 | ||
26 | -> print ... | ||
27 | |||
28 | 27 | ||