pascalabcnet/TestSamples/FormatterTests/input/test_sharp_const.pas
Бондарев Иван e6e67c193c initial commit
2015-05-14 21:35:07 +02:00

8 lines
113 B
ObjectPascal

var s:string;
begin
s:='xxx';
s:=s+#13#10'!'#13#10'ÎÃÎ!';
//s:=s+'1310'+'xxx';
writeln(s);
readln;
end.