
#source

    fun X() "Hello, world!";

#bytecode
    
    PUSHFUN fun, 0;
    JUMP end;
fun:
    PUSHSTR "Hello, world!";
    POP 1;
    RETURN 0;
end:
    ASS "X";
    POP 1;
    EXIT;