27 lines
802 B
Plaintext
27 lines
802 B
Plaintext
|
|
// comment
|
|||
|
|
# comment
|
|||
|
|
/*
|
|||
|
|
comment
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
obj1 = { foo = "baz" }
|
|||
|
|
null1 = null
|
|||
|
|
bool1 = true
|
|||
|
|
bool2 = false
|
|||
|
|
splat1 = tuple.*.foo.bar[0]
|
|||
|
|
splat2 = tuple[*].foo.bar[0]
|
|||
|
|
for1 = { for i, v in ["a", "a", "b"] : v => i... }
|
|||
|
|
for2 /# |