--- [EMAIL PROTECTED] wrote: > I thought that something like what follows: > > goto _foo > end > _foo: > print "Howdy!\n" > end > > would be legal imcc input
IMCC requires you to put everything in .subs. So it should be something like ..sub main goto _foo end _foo: print "Howdy!\n" end ..end There's nothing special about calling it "main", the pasm entry point is the first sub. __________________________________________________ Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up now. http://mailplus.yahoo.com