
procedure inside of a procedure
Quote:
> can I do this please email me....:(
> unhappy in Lynn
> :)
Yes you can. It cold have a strukture like this :(ekample)
PROCEDURE start;
VAR
a,
b : Integer;
PROCEDURE start1
BEGIN
.
your code
.
END;
FUNCTION start2
BEGIN
.
.
.
END;
PROCEDURE start3
BEGIN
.
.
.
END;
BEGIN (* main program IN proceduere *)
start1
IF start2 THEN start3;
END;
(* MAIN PROGRAM *)
BEGIN
start;
END;
Ronny Reitan
email : ronny#nvg.unit.no