We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
This allows the programmer to define variables and procedures to be available during compile time and run time.
(everywhere (def foo 3) (proc bar (x) (+ x 30))) (op baz () %(say $(bar foo))) ; compile-time (baz) ; (say 33) ; run-time (bar foo) ; 33