6 lines
98 B
Text
6 lines
98 B
Text
' literal integers
|
|
PRINT 10
|
|
PRINT 010
|
|
PRINT 0x10
|
|
' C compiler dependent, GCC extension
|
|
PRINT 0b10
|