mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-18 15:39:26 +02:00
10 lines
169 B
ObjectPascal
10 lines
169 B
ObjectPascal
Program Example10;
|
|
|
|
{ Program to demonstrate the Concat function. }
|
|
Var
|
|
S : String;
|
|
|
|
begin
|
|
S:=Concat('This can be done',' Easier ','with the + operator !');
|
|
end.
|