RosettaCodeData/Task/Count-in-octal/FutureBasic/count-in-octal.futurebasic
2016-12-05 23:44:36 +01:00

8 lines
148 B
Text

include "ConsoleWindow
defstr word
dim as short i
for i = &o000000 to &o000031 // 0 to 25 in decimal
print oct$(i); " in octal ="; i
next