mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-06-09 00:38:47 +02:00
10 lines
182 B
ObjectPascal
10 lines
182 B
ObjectPascal
Program Example38;
|
|
|
|
{ This program demonstrates the FileExists function }
|
|
|
|
Uses sysutils;
|
|
|
|
Begin
|
|
If FileExists(ParamStr(0)) Then
|
|
Writeln ('All is well, I seem to exist.');
|
|
End. |