diff options
Diffstat (limited to 'spec/inputs/syntax.moon')
-rw-r--r-- | spec/inputs/syntax.moon | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/spec/inputs/syntax.moon b/spec/inputs/syntax.moon index abee3e3..ae3fc0c 100644 --- a/spec/inputs/syntax.moon +++ b/spec/inputs/syntax.moon | |||
@@ -281,10 +281,15 @@ It's OK. | |||
281 | func --[[port]] 3000, --[[ip]] "192.168.1.1" | 281 | func --[[port]] 3000, --[[ip]] "192.168.1.1" |
282 | 282 | ||
283 | f = -> | 283 | f = -> |
284 | a,b, \ | 284 | a,b, |
285 | c,d, \ | 285 | c,d, |
286 | e,f | 286 | e,f |
287 | 287 | ||
288 | f = -> | ||
289 | a,b \ | ||
290 | ,c,d \ | ||
291 | ,e,f | ||
292 | |||
288 | with obj | 293 | with obj |
289 | invoke \ | 294 | invoke \ |
290 | --[[arg1]] \func!, | 295 | --[[arg1]] \func!, |