RosettaCodeData/Task/Literals-Integer/FutureBasic/literals-integer.futurebasic
2019-09-12 10:33:56 -07:00

8 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)