specs for new number literals #124

This commit is contained in:
leaf corcoran 2014-01-06 10:38:01 -08:00
parent c1f5327114
commit a926e96813
2 changed files with 14 additions and 0 deletions

View File

@ -15,6 +15,14 @@
.2323e-1
.2323e13434
1LL
1ULL
9332LL
9332
0x2aLL
0x2aULL
[[ hello world ]]
[=[ hello world ]=]

View File

@ -10,6 +10,12 @@ _ = 0xABCDEF
_ = .2323
_ = .2323e-1
_ = .2323e13434
_ = 1LL
_ = 1ULL
_ = 9332LL
_ = 9332
_ = 0x2aLL
_ = 0x2aULL
_ = [[ hello world ]]
_ = [=[ hello world ]=]
_ = [====[ hello world ]====]