Saved Bookmarks
| 1. |
Solve : Is there a "back" command?? |
|
Answer» I was WONDERING if you could be on one SCREEN, then type in a type of universal command (that of which I'm putting in my templates) but is there such thing as a back command, or a universal "if %input%==universalcommand goto :UNIVERSALCOMMAND". Quote from: tommyroyall on February 24, 2010, 07:48:15 PM "Is there such thing as a back command, or a universal "if %input%==universalcommand goto :UNIVERSALCOMMAND"." All loops by design "goback" to a previous place in the code when conditions are satisfied. The loop may be a For loop or a goto loop or etc . . . http://www.yourdictionary.com/computer/loop ( The following is from the above SITE. ) loop definition - computer "In programming, a repetition within a program. Whenever a process must be repeated, a loop is set up to handle it. A program has a main loop and a series of MINOR loops, which are nested within the main loop. Learning how to set up loops is what programming technique is all about." |
|