David Robins wrote:
These all using the 2002-12-02_16 snapshot.
1. Can't ret early from .subs - looks like the parser sees a ret and figures
that's the end of the sub.
Yes. Imcc parses and produces code per subroutine, which are delimited
by ".sub" and "ret". A proposal was, to change
These all using the 2002-12-02_16 snapshot.
1. Can't ret early from .subs - looks like the parser sees a ret and figures
that's the end of the sub.
..sub foo
$P0 = 1
if $P0 goto bar
ret
bar:
print "BAR"
ret
Parse error at 'bar'.
2. Most things can only be done in a sub.
$P0 =