syntax_error @ Sun May 25, 2008 10:06 pm wrote:
code: |
var gah
var boo
var hoo
process hahaNot
loop
hahaNot
get gah * hoo
if boo = no then exit
end loop
|
How is that helpful? I mean
A) It doesn't run
B) Theres no way to follow what your doing
To the Original Poster
Loop the program and exit if you don't want to continue
Example
Turing: |
loop
put "Type exit to stop"
var input : string
get input
exit when input = "exit" %% If the input was "exit" then we are going to kick ourselves out of the loop
end loop |