1. RE: procedures calling procedure calling procedure...
rubis at fem.unicamp.br wrote:
> Hi people !
>
> How do I call a procedure that is after the call ?
>
> for example:
>
> --begin
> procedure a()
> ?1
> end procedure
>
> procedure b()
> a()
> c()
> end procedure
>
> procedure c()
> ?3
> end procedure
>
> --end
>
> I'm doing this using call_proc(c(), {}), but something tells me that
> there
> is a more easy or intellignet way to do this...
>
Nope, that's the only way if it appears later in the source...