aboutsummaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
Diffstat (limited to 'spec')
-rw-r--r--spec/inputs/ambiguous.moon26
1 files changed, 26 insertions, 0 deletions
diff --git a/spec/inputs/ambiguous.moon b/spec/inputs/ambiguous.moon
new file mode 100644
index 0000000..a5980db
--- /dev/null
+++ b/spec/inputs/ambiguous.moon
@@ -0,0 +1,26 @@
1import bind from grasp
2(bind stmt) color: "Red"
3
4a = 'b'
5c = d
6(a b) c d
7import c from d
8(a b) c d
9(c d) a b
10a, b = c, d
11(d a) c
12
13macro block f = (func,arg)-> "(#{func}) #{arg}"
14for i = 1, 10
15 a = ->
16 $f print, 1
17 a = f
18 $f print, 2
19 if cond
20 $f print, 3
21 ::abc::
22 (print) 4
23 goto abc
24 (print) 5
25nil
26