chickadee » chicken » load » load-noisily

load-noisily FILE #!key ENVIRONMENT TIME PRINTERprocedure

As load but the result(s) of each evaluated toplevel-expression is written to standard output. If ENVIRONMENT is given and not #f, then each expression is evaluated using this environment. ENVIRONMENT may also be a procedure used to evaluate each toplevel form. If TIME is given and not false, then the execution time of each expression is shown (as with the time macro). If PRINTER is given and not false, then each expression is printed before evaluation by applying the expression to the value of this argument, which should be a one-argument procedure.

See also the load-verbose parameter.