primitive-error. ( error -- )


Vocabulary
debugger

Error description
Thrown by the Factor VM if an unsupported primitive word is called.

Definition
USING: io kernel ;

IN: debugger

: primitive-error. ( error -- )
"Unimplemented primitive" print drop ;