View previous topic :: View next topic |
Author |
Message |
key Beginner
Joined: 29 Dec 2005 Posts: 19 Topics: 6
|
Posted: Thu Feb 23, 2006 4:36 am Post subject: PL/I - Entry Point |
|
|
Hi,
Following thing is possible in PL/1 ?
Main Procedure:-
A: Proc options(main);
dcl b1 ext entry;
dcl b2 ext entry;
Call b1;
Call b2;
End A;
Subprocedure:-
B: Proc
b1: Proc
............
............
End b1;
b2: proc
...........
end b2;
end B;
Could you please explain Entry Point concept ? |
|
Back to top |
|
 |
kolusu Site Admin

Joined: 26 Nov 2002 Posts: 12380 Topics: 75 Location: San Jose
|
|
Back to top |
|
 |
key Beginner
Joined: 29 Dec 2005 Posts: 19 Topics: 6
|
Posted: Wed Mar 01, 2006 9:11 am Post subject: |
|
|
Thank Much. I will check it out the link. |
|
Back to top |
|
 |
|
|