Re: :immediate behaviour

2006-05-19 Thread Patrick R. Michaud
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

Re: :immediate behaviour

2006-05-18 Thread Leopold Toetsch
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

:immediate behaviour

2006-05-18 Thread Klaas-Jan Stol
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 .