RosettaCodeData/Task/Literals-Integer/FutureBasic/literals-integer.futurebasic
2016-12-05 23:44:36 +01:00

9 lines
234 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)
<lang futurebasic>