Ok heres a quick one.
This example will print "hi" over and over.
This example will print "HI" 3 times
for t = 1 to 3
print "hi"
next t
Note the variable t is just that a variable it can be almost anyname you wish. Just be sure to use the same variable in the next statement like this.
This code does the same thing as the last. But it will print it 10 times.
for DarthVader = 1 to 10
print "Hi"
Next DarthVader
The for next loop just cycles as many times as you tell it to.
10 20 1000 30000 what ever you need.
This example will print the numbers 1 to 23 then print your name over and over.
rem you can use rem to remark your code
rem remember the word times is just a variable
for times = 1 to 23
print times
next times
do
print "Darth Vader"
Print " Darth Vader"
Print " Darth Vader"
Print " Darth Vader"
loop
http://badtempergames.tripod.com