moonscript/tests/outputs/literals.lua

17 lines
279 B
Lua
Raw Normal View History

local _ = 121
_ = 121.2323
_ = 121.2323e-1
_ = 121.2323e13434
_ = 2323E34
_ = 0x12323
_ = 0xfF2323
_ = 0xabcdef
_ = 0xABCDEF
2013-01-24 23:20:06 +00:00
_ = .2323
_ = .2323e-1
_ = .2323e13434
_ = [[ hello world ]]
_ = [=[ hello world ]=]
_ = [====[ hello world ]====]
_ = "another world"
return 'what world'