diff options
Diffstat (limited to 'spec/inputs/bubbling.moon')
-rw-r--r-- | spec/inputs/bubbling.moon | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/spec/inputs/bubbling.moon b/spec/inputs/bubbling.moon index d1004f9..62d1550 100644 --- a/spec/inputs/bubbling.moon +++ b/spec/inputs/bubbling.moon | |||
@@ -3,17 +3,17 @@ | |||
3 | f = (...) -> #{...} | 3 | f = (...) -> #{...} |
4 | 4 | ||
5 | dont_bubble = -> | 5 | dont_bubble = -> |
6 | [x for x in ((...)-> print ...)("hello")] | 6 | [x for x in ((...)-> print ...)("hello")] |
7 | 7 | ||
8 | k = [x for x in ((...)-> print ...)("hello")] | 8 | k = [x for x in ((...)-> print ...)("hello")] |
9 | 9 | ||
10 | j = for i=1,10 | 10 | j = for i=1,10 |
11 | (...) -> print ... | 11 | (...) -> print ... |
12 | 12 | ||
13 | -- bubble me | 13 | -- bubble me |
14 | 14 | ||
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 | x = for i in *{...} do i |
19 | y = [x for x in *{...}] | 19 | y = [x for x in *{...}] |
@@ -23,6 +23,6 @@ z = [x for x in hallo when f(...) > 4] | |||
23 | a = for i=1,10 do ... | 23 | a = for i=1,10 do ... |
24 | 24 | ||
25 | b = for i=1,10 | 25 | b = for i=1,10 |
26 | -> print ... | 26 | -> print ... |
27 | 27 | ||
28 | 28 | ||