diff options
Diffstat (limited to 'spec/inputs/using.moon')
-rw-r--r-- | spec/inputs/using.moon | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/spec/inputs/using.moon b/spec/inputs/using.moon index e407983..cd78ba6 100644 --- a/spec/inputs/using.moon +++ b/spec/inputs/using.moon | |||
@@ -13,9 +13,10 @@ _ = (a,b,c using a,b,c) -> | |||
13 | a,b,c = 1,2,3 | 13 | a,b,c = 1,2,3 |
14 | world = 12321 | 14 | world = 12321 |
15 | 15 | ||
16 | _ = (a,e,f using a,b,c, hello) -> | 16 | (a,e,f using a,b,c, hello) -> |
17 | a,b,c = 1,2,3 | 17 | a,b,c = 1,2,3 |
18 | hello = 12321 | 18 | hello = 12321 |
19 | world = "yeah" | 19 | world = "yeah" |
20 | 20 | ||
21 | 21 | ||
22 | |||