aboutsummaryrefslogtreecommitdiff
path: root/spec/inputs/using.moon
diff options
context:
space:
mode:
authorLi Jin <dragon-fly@qq.com>2020-10-08 13:01:18 +0800
committerLi Jin <dragon-fly@qq.com>2020-10-08 13:01:18 +0800
commit97bbe98289fb74c7cf2d9793b80a1a27b4146045 (patch)
tree4bee0dded55bad28f6822b6e2dd3ea5251c66ae2 /spec/inputs/using.moon
parent5b656d2913e4f9f0017698ec835ce4ddda1dc81f (diff)
downloadyuescript-97bbe98289fb74c7cf2d9793b80a1a27b4146045.tar.gz
yuescript-97bbe98289fb74c7cf2d9793b80a1a27b4146045.tar.bz2
yuescript-97bbe98289fb74c7cf2d9793b80a1a27b4146045.zip
change file extension moonp.
Diffstat (limited to 'spec/inputs/using.moon')
-rw-r--r--spec/inputs/using.moon22
1 files changed, 0 insertions, 22 deletions
diff --git a/spec/inputs/using.moon b/spec/inputs/using.moon
deleted file mode 100644
index fe0a433..0000000
--- a/spec/inputs/using.moon
+++ /dev/null
@@ -1,22 +0,0 @@
1
2hello = "hello"
3world = "world"
4
5_ = (using nil) ->
6 hello = 3223
7
8_ = (a using nil) ->
9 hello = 3223
10 a = 323
11
12_ = (a,b,c using a,b,c) ->
13 a,b,c = 1,2,3
14 world = 12321
15
16(a,e,f using a,b,c, hello) ->
17 a,b,c = 1,2,3
18 hello = 12321
19 world = "yeah"
20
21
22