Hacker Dictionary
 
Browse the Dictionary...
All A B C D E F G H I J K L M N O P Q R S T U V W X Y Z

Navigation Random Term
  • winged comments
    n. Comments set on the same line as code, as opposed to {boxed comments}. In C, for example d =... VIEW ENTIRE DEFINITION


  •  View Definition: main loop 

    main loop


    n. Software tools are often written to perform some actions repeatedly on whatever input is handed to them, terminating when there is no more input or they are explicitly told to go away. In such programs, the loop that gets and processes input is called the `main loop'. See also driver.