mirror of
https://github.com/leafo/moonscript.git
synced 2024-11-22 02:44:23 +00:00
9 lines
80 B
Plaintext
9 lines
80 B
Plaintext
|
a = 'b'
|
||
|
c = d
|
||
|
(a b) c d
|
||
|
import c from d
|
||
|
(a b) c d
|
||
|
(c d) a b
|
||
|
a, b = c, d
|
||
|
(d a) c
|