fpc/docs/refex/ex88.pp
carl 3bd6280073 * update makefiles for testing
* update example which did not compile
2002-11-10 12:22:10 +00:00

15 lines
262 B
ObjectPascal

Program Example88;
{ Program to demonstrate the AssignFile and CloseFile functions. }
{$MODE Delphi}
Var F : text;
begin
AssignFile(F,'textfile.tmp');
Rewrite(F);
Writeln (F,'This is a silly example of AssignFile and CloseFile.');
CloseFile(F);
end.