RosettaCodeData/Task/Count-in-octal/FutureBasic/count-in-octal.basic
2023-07-01 13:44:08 -04:00

12 lines
143 B
Text

window 1, @"Count in Octal"
defstr word
dim as short i
text ,,,,, 50
print @"dec",@"oct"
for i = 0 to 25
print i,oct(i)
next
HandleEvents