RosettaCodeData/Task/Count-in-octal/FutureBasic/count-in-octal.basic

13 lines
143 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
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