compiler-message ( string -- )


Vocabulary
compiler

Definition
USING: io kernel namespaces ;

IN: compiler

: compiler-message ( string -- )
"trace-compilation" get
[ [ print flush ] with-global ] [ drop ] if ;