[top][index]
search for:

top level loop

The top level evaluation loop of the interpreter contains hooks so the user can control how printing of the results of evaluation is done. If the result is null then nothing is printed. Otherwise, the appropriate method associated with the symbol Print is applied to perform the printing, unless the printing is to be suppressed, as indicated by a semicolon at the end of the statement, in which case the NoPrint method is applied.

  • AfterEval -- top level method applied after evaluation
  • AfterPrint -- top level method applied after printing
  • AfterNoPrint -- top level method applied after not printing
  • NoPrint -- top level method for non-printing results
  • Print -- top level method for printing results

  • [top][index]
    search for: