Re: routine_id
- Posted by mattlewis (admin) Aug 26, 2008
- 813 views
SDPringle said...
The documentation should read that routine_id can be used to call a routine before it is defined. With 4.0 declare and define you really could say 'declared' here.
Actually, you don't even need 'declared' or anything like that in 4.0:
MyProc() --<<<< Here is the call. procedure MyProc() --<<<< Here is the routine. puts(1, "MyProc called\n") end procedure
Matt