pascalabcnet/InstallerSamples/!Tutorial/01_First/StringPlus.pas

8 lines
143 B
ObjectPascal
Raw Permalink Normal View History

2018-10-26 20:12:42 +03:00
// Сложение строк
2015-05-14 22:35:07 +03:00
var s1: string := 'Pascal';
var s2: string := 'NET';
begin
2018-10-26 20:12:42 +03:00
Writeln(s2+'-'+s1);
Writeln(s1+'.'+s2);
2015-05-14 22:35:07 +03:00
end.