mirror of
https://github.com/leafo/moonscript.git
synced 2025-01-09 00:04:22 +00:00
72 lines
1006 B
Lua
72 lines
1006 B
Lua
local backpack = {
|
|
something = {
|
|
yeah = 200,
|
|
they = function()
|
|
print("hello")
|
|
return yor_feet("small")
|
|
end,
|
|
pretty = hair,
|
|
gold = hmm
|
|
},
|
|
yow = 1000,
|
|
eat = goo,
|
|
yeah = dudd
|
|
}
|
|
local start = { something = "cold" }
|
|
local bathe = { on = "fire" }
|
|
local another = { [4] = 232, ["good food"] = "is the best" }
|
|
local fwip = {
|
|
something = hello("what"),
|
|
number = 2323,
|
|
what = yo("momma", "yeah"),
|
|
fruit = basket,
|
|
nuts = day
|
|
}
|
|
local frick = { hello = "world" }
|
|
local frack, best = { hello = "world", rice = 3434 }, "what"
|
|
local ya = {
|
|
1,
|
|
2,
|
|
3,
|
|
key = 100,
|
|
343,
|
|
"hello",
|
|
umm = 232
|
|
}
|
|
local x = {
|
|
1,
|
|
2,
|
|
4343,
|
|
343,
|
|
343
|
|
}
|
|
local g, p = {
|
|
1,
|
|
2,
|
|
nowy = "yes",
|
|
3,
|
|
4,
|
|
hey = 232,
|
|
another = "day"
|
|
}, 234
|
|
local annother = {
|
|
1,
|
|
2,
|
|
3,
|
|
3,
|
|
4,
|
|
5,
|
|
6,
|
|
7,
|
|
8
|
|
}
|
|
local yeah = { [232] = 3434, "helo", ice = "cake" }
|
|
local whatabout = {
|
|
hello(world, another),
|
|
what,
|
|
about,
|
|
now,
|
|
hello("world"),
|
|
yeah,
|
|
hello("world", yeah)
|
|
} |