RosettaCodeData/Task/Literals-Integer/FutureBasic/literals-integer.futurebasic

9 lines
215 B
Text
Raw Permalink Normal View History

2016-12-05 23:44:36 +01:00
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)