1. Re: Euphoria question
- Posted by Robert Craig <72614.1667 at COMPUSERVE.COM> Sep 05, 1996
- 2000 views
Austin Broyles asked: > Is there a statement in Euphoria similar to the "goto" statement in QBasic? No there isn't. 1. goto is not necessary. This was theoretically proven long ago. 2. Relying too much on goto leads to hard-to-understand logic. 3. If you get used to programming without goto you'll eventually find that you rarely have any desire to use it. 4. The fact that there is no goto helps Euphoria to optimize your program. For instance, Euphoria can easily eliminate most tests for uninitialized variables at "compile" time, allowing your program to run faster. Regards, Rob Craig Rapid Deployment Software