^^load-literal ( obj -- dst )


Vocabulary
compiler.cfg.hats

Definition
USING: kernel math ;

IN: compiler.cfg.hats

: ^^load-literal ( obj -- dst )
dup fixnum? [ ^^load-integer ] [ ^^load-reference ] if ;