home *** CD-ROM | disk | FTP | other *** search
- Unit SAMPLE2;
-
- Interface
-
- Procedure ONE(a:integer,
- b:real,
- c:char);
- Function Four():Boolean;
-
-
- Implementation
-
- ^^ commenting begins on this line
-
- Uses CRT, DOS, AnyUnits, etc, etc, etc.;
-
- Procedure ONE(a:integer,
- b:real,
- c:char);
- Begin
- .
- .
- code goes here
- .
- .
- End;
-
- Procedure TWO(a:integer,
- b:real,
- c:char);
- Begin
- .
- .
- code goes here
- .
- .
- End;
-
- Procedure Three;
- Begin
- .
- .
- code goes here
- .
- .
- End;
-
- Function Four():Boolean;
- Begin
- .
- .
- code goes here
- .
- .
- End;
-
- End.