Componentes.Terceros.RemObj.../official/5.0.29.665/Pascal Script for Delphi/Samples/Import/stringtest.rops
2008-03-24 15:49:18 +00:00

9 lines
81 B
Plaintext

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