Getting Started with the Pascal tutorial, source
Submitted By:
WEBMASTER
Rating:
(Not rated) (
Rate It)
(* Chapter 5 - Program 5 *)
program Procedure_Calling_A_Procedure;
procedure One;
begin
Writeln('This is procedure one');
end;
procedure Two;
begin
One;
Writeln('This is procedure two');
end;
procedure Three;
begin
Two;
Writeln('This is procedure three');
end;
begin (* main program *)
One;
Writeln;
Two;
Writeln;
Three;
end. (* of main program *)