1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | clear screen print "Hello" print "Hello\nWorld" string$ = "Hello" for i = 0 to 100 step 1 string$ = string$ + "\tHello" print string$ next i print "01234567890123456789012345678901234567890123456789012345678901234567890123456789" print "0123456789012345678901234567890123456789012345678901234567890123456789012345678A" print "Press any key to terminate: "; a$ = inkey$ print a$ |