fpc/docs/refex/ex10.pp
1998-03-25 11:26:49 +00:00

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.