Hi,

this time a funny bug :-)

1. create a file main.imc with the following content:
.sub _main
    print "A\n"
    load_bytecode "hello.imc"
    print "B\n"
    end
.end

2. create a file hello.imc with the following content:
.emit
.pcc_sub @LOAD _onload:
    print "foo\n"
    end
.eom

.sub _hello
    print "blah blah string\n"
    load_bytecode "hello, world!\n"
    end
.end

3. run main.imc

jens

Reply via email to