mirror of
https://github.com/irmen/prog8.git
synced 2025-02-16 22:30:46 +00:00
19 lines
365 B
Lua
19 lines
365 B
Lua
%import textio
|
|
|
|
main {
|
|
sub start() {
|
|
uword size1 = sizeof(22222)
|
|
txt.print_uw(size1)
|
|
txt.nl()
|
|
uword size2 = sizeof(2.2)
|
|
txt.print_uw(size2)
|
|
txt.nl()
|
|
cx16.r0 = sizeof(22222)
|
|
txt.print_uw(cx16.r0)
|
|
txt.nl()
|
|
cx16.r0 = sizeof(2.2)
|
|
txt.print_uw(cx16.r0)
|
|
txt.nl()
|
|
}
|
|
}
|