mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-11-18 10:59:41 +01:00
9 lines
101 B
ObjectPascal
9 lines
101 B
ObjectPascal
#!/usr/bin/env instantfpc
|
|
{$mode objfpc}{$H+}
|
|
uses
|
|
SysUtils;
|
|
begin
|
|
writeln(GetCurrentDir);
|
|
end.
|
|
|