On Thu, May 18, 2006 at 01:01:13PM +0200, Klaas-Jan Stol wrote:
> hi,
>
> if I understand correctly, the :immediate pragma makes the sub which has
> this pragma run immediately after parsing (well, at least before running
> the program)
>
> Suppose I have this code:
>
>.sub loadstuff :imme
On May 18, 2006, at 13:01, Klaas-Jan Stol wrote:
Then, running this code will start running the loadstuff( ) again
(because main doesn't have the :main pragma, and loadstuff() is at the
top of the file).
My concern is, is this the desired effect?
I dunno, what the desired effect is. But it
hi,
if I understand correctly, the :immediate pragma makes the sub which has
this pragma run immediately after parsing (well, at least before running
the program)
Suppose I have this code:
.sub loadstuff :immediate
# load stuff
.end
.sub main
dostuff( )
end
.