diff options
author | Li Jin <dragon-fly@qq.com> | 2020-01-24 14:55:59 +0800 |
---|---|---|
committer | Li Jin <dragon-fly@qq.com> | 2020-01-24 14:55:59 +0800 |
commit | 4465a18f396212e177211f57c5c97cea444a0061 (patch) | |
tree | af40c20cca262137a0dd7e85de0354c64c229a88 /spec/inputs/using.moon | |
parent | 7ac3519dc40bb6f6ab979c9cd35fd585f25d1c25 (diff) | |
download | yuescript-4465a18f396212e177211f57c5c97cea444a0061.tar.gz yuescript-4465a18f396212e177211f57c5c97cea444a0061.tar.bz2 yuescript-4465a18f396212e177211f57c5c97cea444a0061.zip |
fix issues.
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 | |||