moonscript/tests/outputs/literals.lua
2013-01-24 15:20:29 -08:00

17 lines
279 B
Lua

local _ = 121
_ = 121.2323
_ = 121.2323e-1
_ = 121.2323e13434
_ = 2323E34
_ = 0x12323
_ = 0xfF2323
_ = 0xabcdef
_ = 0xABCDEF
_ = .2323
_ = .2323e-1
_ = .2323e13434
_ = [[ hello world ]]
_ = [=[ hello world ]=]
_ = [====[ hello world ]====]
_ = "another world"
return 'what world'