mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-12-14 08:40:58 +01:00
9 lines
101 B
ObjectPascal
Executable File
9 lines
101 B
ObjectPascal
Executable File
#!/usr/bin/env instantfpc
|
|
{$mode objfpc}{$H+}
|
|
uses
|
|
SysUtils;
|
|
begin
|
|
writeln(GetCurrentDir);
|
|
end.
|
|
|