We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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