mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 17:28:05 +02:00
19 lines
276 B
ObjectPascal
19 lines
276 B
ObjectPascal
{$ifdef fpc}{$mode objfpc}{$endif}
|
|
|
|
uses
|
|
sysutils;
|
|
|
|
var ErrorFileHandle : Text;
|
|
|
|
begin
|
|
//No Assignfile
|
|
Writeln('----');
|
|
try
|
|
CloseFile(ErrorFileHandle);
|
|
except
|
|
on E: Exception
|
|
do Writeln('ExceptionMessage: '+e.Message);
|
|
end;
|
|
Writeln('----');
|
|
end.
|