printStack (--)printStack prints the current data stack without modifying it.
{} 0 {} [
"-- original stack --" printCompilerMessage
7 "hi" FALSE
printStack
"-- printStack does not pop --" printCompilerMessage
printStack
"-- after one manual pop --" printCompilerMessage
_:;
printStack
_:; _:;
0
] "main" exportFunction
-- original stack --
7
"hi"
FALSE
-- printStack does not pop --
7
"hi"
FALSE
-- after one manual pop --
7
"hi"
failCompilation builtin (--) Aborts compilation immediately.getCallTrace builtin (-- callTrace) Returns a Ref to the current call trace, or NIL when unavailable.printCompilerMessage builtin (message --) Prints a known Text message during compilation and appends one line-feed character.printStackTrace builtin (--) Prints the current scope stack as file path, line, column, and node source text information.raiseStaticError builtin (message --) Raises a compile-time error with the given known Text message.