Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
var
s: string;
...
begin
s := '';
SetLength( s, LengthOfArrayX );
for i := 1 to LengthOfArrayX do
s := s + X[i];
end;
[b]program[/b] ImportantProg;
[b]uses[/b]
FastMM4, Forms;
[navy]// snip[/navy]