Componentes.Terceros.RemObj.../internal/5.0.29.665/1/Pascal Script for Delphi/Samples/Import/stringtest.rops
2008-03-26 09:08:15 +00:00

9 lines
81 B
Plaintext

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