9 lines
215 B
Text
9 lines
215 B
Text
|
|
include "ConsoleWindow"
|
||
|
|
|
||
|
|
def tab 2
|
||
|
|
|
||
|
|
print " Decimal 100:", 100
|
||
|
|
print " Hexadecimal &h64:", &h64, hex$(100)
|
||
|
|
print " Octal &o144:", &o144, oct$(100)
|
||
|
|
print " Binary &x1100100:", &x1100100, bin$(100)
|