home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Frostbyte's 1980s DOS Shareware Collection
/
floppyshareware.zip
/
floppyshareware
/
DPSX
/
TOOL-PAS.ZIP
/
IDUMP.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
|
1991-06-05
|
291 b
|
22 lines
var
fd: file of byte;
b: byte;
buf: array[1..maxint] of char;
begin
assign(fd,paramstr(1));
reset(fd);
settextbuf(output,buf);
while not eof(fd) do
begin
read(fd,b);
writeln(b);
end;
close(fd);
flush(output);
end.