aboutsummaryrefslogtreecommitdiff
path: root/spec/inputs/syntax.moon
blob: 854f6297c69108e205410573997dfcf97372cf0a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
#!/this/is/ignored

a = 1 + 2* 3 / 6

a, bunch, go, here = another, world

func arg1, arg2, another, arg3

here, we = () ->, yeah
the, different = () -> approach; yeah

dad()
dad(lord)
hello(one,two)()
(5 + 5)(world)

fun(a)(b)

fun(a) b

fun(a) b, bad hello

hello world what are you doing here


what(the)[3243] world, yeck heck

hairy[hands][are](gross) okay okay[world]

(get[something] + 5)[years]

i,x  = 200, 300

yeah = (1 + 5) * 3
yeah = ((1+5)*3)/2
yeah = ((1+5)*3)/2 + i % 100

whoa = (1+2) * (3+4) * (4+5)

->
  if something
    return 1,2,4

  print "hello"

->
  if hello
    "heloo", "world"
  else
    no, way


-> 1,2,34

return 5 + () -> 4 + 2

return 5 + (() -> 4) + 2

print 5 + () ->
	34
	good nads


something 'else', "ya"

something'else'
something"else"

something[[hey]] * 2
something[======[hey]======] * 2


something'else', 2
something"else", 2
something[[else]], 2

something 'else', 2
something "else", 2
something [[else]], 2

here(we)"go"[12123]

-- this runs
something =
  test: 12323
  what: -> print "hello world"

print something.test

frick = hello: "world"

argon =
  num: 100
  world: (self) ->
    print self.num
    return {
      something: -> print "hi from something"
    }
  somethin: (self, str) ->
    print "string is", str
    return world: (a,b) -> print "sum", a + b

something.what()
argon\world().something()

argon\somethin"200".world(1,2)

x = -434

x = -hello world one two

hi = -"herfef"

x = -[x for x in x]

print "hello" if cool
print "hello" unless cool
print "hello" unless 1212 and 3434 -- hello
print "hello" for i=1,10

print "nutjob"

if hello then 343

print "what" if cool else whack

arg = {...}

x = (...) ->
  dump {...}


x = not true

y = not(5+5)


y = #"hello"

x = #{#{},#{1},#{1,2}}

hello, world

something\hello(what) a,b
something\hello what
something.hello\world a,b
something.hello\world(1,2,3) a,b


x = 1232
x += 10 + 3
j -= "hello"
y *= 2
y /= 100
m %= 2
hello ..= "world"

@@something += 10
@something += 10

a["hello"] += 10
a["hello#{tostring ff}"] += 10
a[four].x += 10

x = 0
(if ntype(v) == "fndef" then x += 1) for v in *values


hello =
  something: world
  if: "hello"
  else: 3434
  function: "okay"
  good: 230203


div class: "cool"

5 + what wack
what whack + 5

5 - what wack
what whack - 5

x = hello - world - something

((something = with what
  \cool 100) ->
  print something)!

if something
  03589

-- okay what about this

else
  3434


if something
  yeah


elseif "ymmm"

  print "cool"

else

  okay


-- test names containing keywords
x = notsomething
y = ifsomething
z = x and b
z = x andb


-- undelimited tables

while 10 > something
  something: "world"
    print "yeah"

x =
  okay: sure

yeah
  okay: man
  sure: sir

hello "no comma"
 yeah: dada
 another: world

hello "comma",
 something: hello_world
 frick: you

-- creates two tables
another hello, one,
  two, three, four, yeah: man
  okay: yeah

-- 
a += 3 - 5
a *= 3 + 5
a *= 3
a >>= 3
a <<= 3
a /= func "cool"

---

x.then = "hello"
x.while.true = "hello"

--

x or= "hello"
x and= "hello"

--

z = a-b
z = a -b
z = a - b
z = a- b


-- cooool