Function: EMIT-CODE

Documentation

Emit to the current yaclml-code CODE. This means that whatever CODE is it will be run, and it's result will be ignored, at runtime.

Source

(defun emit-code (&rest forms)
  "Emit to the current yaclml-code CODE. This means that whatever
   CODE is it will be run, and it's result will be ignored, at
   runtime."
  (setf %yaclml-code% (nconc forms %yaclml-code%)))
Source Context