home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus 2000 #5
/
Amiga Plus CD - 2000 - No. 5.iso
/
Tools
/
Dev
/
fpc
/
source
/
docs
/
refex
/
ex88.pp
< 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
Text File
|
2000-01-01
|
262 b
|
15 lines
Program Example88;
{ Program to demonstrate the AssignFile and CloseFile functions. }
{$MODE Delphi}
Var F : text;
begin
AssignFile(F,'textfile.txt');
Rewrite(F);
Writeln (F,'This is a silly example of AssignFile and CloseFile.');
CloseFile(F);
end.