mirror of
https://github.com/leafo/moonscript.git
synced 2024-11-22 02:44:23 +00:00
05b3a8f989
integer, float and hex
14 lines
237 B
Lua
14 lines
237 B
Lua
local _ = 121
|
|
_ = 121.2323
|
|
_ = 121.2323e-1
|
|
_ = 121.2323e13434
|
|
_ = 2323E34
|
|
_ = 0x12323
|
|
_ = 0xfF2323
|
|
_ = 0xabcdef
|
|
_ = 0xABCDEF
|
|
_ = [[ hello world ]]
|
|
_ = [=[ hello world ]=]
|
|
_ = [====[ hello world ]====]
|
|
_ = "another world"
|
|
_ = 'what world' |