mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 21:28:21 +02:00
13 lines
144 B
ObjectPascal
13 lines
144 B
ObjectPascal
program project1;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
Classes, SysUtils;
|
|
|
|
Var
|
|
AStr : String = '';
|
|
begin
|
|
WriteLn(ConcatPaths(['one', 'two']));
|
|
end.
|