mirror of
https://github.com/leafo/moonscript.git
synced 2024-11-22 02:44:23 +00:00
20 lines
331 B
Plaintext
20 lines
331 B
Plaintext
|
|
-- see lists.moon for list comprehension tests
|
|
|
|
items = {1,2,3,4,5,6}
|
|
out = {k,k*2 for k in items}
|
|
|
|
|
|
x = hello: "world", okay: 2323
|
|
|
|
copy = {k,v for k,v in pairs x when k != "okay"}
|
|
|
|
--
|
|
|
|
{ unpack(x) for x in yes }
|
|
{ unpack(x) for x in *yes }
|
|
|
|
{ xxxx for x in yes }
|
|
{ unpack [a*i for i, a in ipairs x] for x in *{{1,2}, {3,4}} }
|
|
|