home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng)
/
ProfitPress-MegaCDROM2.B6I
/
PROG
/
MISC
/
BLX11.ZIP
/
TECHNIX.PAS
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Pascal/Delphi Source File
|
1991-01-21
|
343 b
|
18 lines
program FileDemo;
const
FileName = 'TEST.TXT';
var
FileVar : Text;
InString : String;
begin
Assign(FileVar,FileName);
Rewrite(FileVar);
WriteLn(FileVar,'Write this to a file');
Close(FileVar);
Assign(FileVar,FileName);
Reset(FileVar);
Readln(FileVar,InString);
Close(FileVar);
WriteLn(InString);
end.