mirror of
https://github.com/irmen/prog8.git
synced 2024-11-27 03:50:27 +00:00
10 lines
195 B
Lua
10 lines
195 B
Lua
%option enable_floats
|
|
main {
|
|
sub start() {
|
|
uword w1 = 000_1234_5__
|
|
uword w2 = $ff_ee
|
|
uword w3 = %11_0000_111111__0000
|
|
float fl = 3_000_001.141_592_654
|
|
}
|
|
}
|