First let me start off by saying thanks for the response. I learned shortly after posting that bit of code about how goto's are bad, though I'm still trying to figure out an alternative (still reading guides/tutorials). I'm thinkin' subroutines would do the trick, will have to toy with it later.
As for what i'm doing now, well... I dont quite know. A number guessing game seems like a good start, then I'll try my hand at a pong clone or (if i'm feeling daring) maybe a galaga clone.
Anyways, Thanks for the welcome and I'll be sure to remove those nasty goto's.
BTW, this is how my loop test turned out before I stopped toying with it (and before learning about goto's)
Do
Start:
cls
print "Loop Test"
print ""
print "What kind of loop test do you want to do?"
print "1. Repeat/Until Loop Test"
print "2. For/Next Loop Test"
print "3. While/EndWhile Loop Test"
print "4. Exit"
INPUT "Which test do you choice? (1-4)", Test$
if Test$="1" then goto StartUntil
if Test$="2" then goto StartNext
if Test$="3" then goto StartWhile
if Test$="4" then goto Finish
StartUntil: REM Begin Repeat/Until Loop Test
cls
print "Repeat/Until Loop Test"
print ""
INPUT "How many times would you like this line to be repeated?", UntilValue
UntilCounter=0
Repeat
Print "TEST**TEST**TEST #";UntilCounted+1;"" REM +1 to off set the counter
Inc UntilCounter
Inc UntilCounted
Until UntilCounter=UntilValue
goto TryAgain
StartNext: REM Begin For/Next Loop Test
cls
print "For/Next Loop Test"
print ""
INPUT "How many times would you like this line to be repeated?", NextValue
For N=1 to NextValue
print "TEST**TEST**TEST #";N;""
Next N
goto TryAgain
StartWhile: REM Begin While/EndWhile Loop Test
cls
print "While/EndWhile Loop Test"
print ""
INPUT "How many times would you like this line to be repeated?", WhileValue
WhileCounter=0
While WhileCounter<WhileValue
print "TEST**TEST**TEST #";WhileCounted+1;"" REM +1 to off set the counter
inc WhileCounter
inc WhileCounted
EndWhile
goto TryAgain
TryAgain:
INPUT "Would you like to try again? (Y/N)", Answer$
if Answer$="Y" then goto Start
if Answer$="y" then goto Start
if Answer$="N" then goto Finish
if Answer$="n" then goto Finish
Loop
Finish:
End