Re: Stuck in an infinite loop
- Posted by Travis Beaty <travisbeaty at arn.net> May 16, 2001
- 451 views
Howdy David! ----- Original Message ----- From: <dstanger at belco.bc.ca> To: "EUforum" <EUforum at topica.com> Subject: Stuck in an infinite loop > What does one do to > stop the program and return to the editor? I am using CS:EE for an editor > and the public domain edition of Euphoria if that is necessary information. Try CTRL+C. That should shut the program down, *unless* you set allow_break() to 0, in which case you might be up the proverbial creek without the proverbial paddle. I'm not sure that the act of pressing CTRL+BREAK locked up your system (although it could have). Rather, your memory might have been overrun by whatever action your program was performing while caught in the loop. Travis Beaty Claude, Texas.