Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
lazarus / usr / share / lazarus / 1.6 / components / PascalScript / Samples / Import / stringtest.rops
Size: Mime:
Program test;
var s: string;
begin
s:='123456789';
s[1]:=s[2];
writeln(s);
end.