mirror of
https://github.com/leafo/moonscript.git
synced 2024-11-22 02:44:23 +00:00
14 lines
326 B
Lua
14 lines
326 B
Lua
|
local hi = "hello"
|
||
|
local hello = "what the heckyes"
|
||
|
print(hi)
|
||
|
local umm = 'umm'
|
||
|
local here, another = "yeah", 'world'
|
||
|
local aye = "YU'M"
|
||
|
you('"hmmm" I said')
|
||
|
print(aye, you)
|
||
|
another = [[ hello world ]]
|
||
|
local hi_there = [[ hi there
|
||
|
]]
|
||
|
local well = [==[ "helo" ]==]
|
||
|
local hola = [===[ eat noots]===]
|
||
|
local mm = [[well trhere]]
|