mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-07-06 08:46:04 +02:00
9 lines
101 B
ObjectPascal
9 lines
101 B
ObjectPascal
#!/usr/bin/env instantfpc
|
|
{$mode objfpc}{$H+}
|
|
uses
|
|
SysUtils;
|
|
begin
|
|
writeln(GetCurrentDir);
|
|
end.
|
|
|