aboutsummaryrefslogtreecommitdiff
path: root/spec/inputs/using.moon
blob: 55a16a78e1df44ca40590651998d67c859daacd0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21

hello = "hello"
world = "world"

(using nil) ->
  hello = 3223

(a using nil) ->
  hello = 3223
  a = 323

(a,b,c using a,b,c) ->
  a,b,c = 1,2,3
  world = 12321

(a,e,f using a,b,c, hello) ->
  a,b,c = 1,2,3
  hello = 12321
  world = "yeah"