@Grandma: We don't do it that way
THIS is
FAR more easy!
global MEH as string
MEH = "MEEEEEEEEEEEH!"
global textfile as string
textfile = "LOL!.txt"
global Verify as integer
input "How many times do you wish for the word meh? : ", Verify
if Verifyy < 0 then Verify = 0
if Verify = 0 then end
do
cls
LOL(Verify)
loop
function LOL(multiplier as integer)
if multiplier = 0 then exitfunction
for x = 1 to multiplier
print str$(x)+" "+MEH
set_multiplier_on = 1
next x
if set_multiplier_on = 1
wait 2000
Save_File(textfile, 1, 1)
cls
set cursor 10, 10
print "Saved to text file '"+textfile+"'!"
wait 1000
cls
set cursor 0,0
print "Goodbye!"
wait 2000
end
endif
endfunction multiplier
function Save_File(savefile as string, fileno as integer, Joke as integer)
if Joke<>0
if file exist(savefile)<>0 then delete file savefile
open to write fileno, savefile
for x = 1 to Verify
write string fileno, str$(x)+" "+MEH
next x
close file fileno
endif
endfunction
~M.W~