test.bas 163 B

12345678910111213
  1. 10 let i=1
  2. 20 gosub 100
  3. 30 let i=i+1
  4. 40 if i<=10 then goto 20
  5. 50 end
  6. 100 let j=1
  7. 110 print " ", i*j,
  8. 120 let j=j+1
  9. 130 if j<=i then goto 110
  10. 140 print
  11. 150 return