mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-06-20 15:58:29 +02:00
11 lines
160 B
ObjectPascal
11 lines
160 B
ObjectPascal
|
|
|
|
const
|
|
string1 : string = 'hello ';
|
|
string2 : array[1..5] of char = 'there';
|
|
var
|
|
s : string;
|
|
begin
|
|
s:=string1+string2;
|
|
writeln(string1+string2);
|
|
end. |