summaryrefslogtreecommitdiff
path: root/src/user/app/kbasic/count.bas
blob: 5741a720d768a49aa9fa4c662a9ddc60090e32b6 (plain) (blame)
1
2
3
4
5
6
7
05 print "Let me count to 100:"
10 a = 0
20 print a;
30 a = a + 1
40 if a = 100 then goto 60
50 goto 20
60 end