home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD1.mdf
/
pascal
/
library
/
dos
/
streams
/
ovr1.pas
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
1992-03-31
|
178 b
|
15 lines
unit ovr1;
{$O+,F+}
interface
procedure proc1;
implementation
procedure proc1;
begin
writeln('This line is being printed by proc1 in unit ovr1.');
end;
end.