Componentes.Terceros.RemObj.../official/5.0.23.613/Pascal Script for Delphi/Samples/Import/stringtest.rops

9 lines
81 B
Plaintext

Program test;
var s: string;
begin
s:='123456789';
s[1]:=s[2];
writeln(s);
end.