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.
procedure InitialiseToZero(var Arr: Array of Double)
var
i:integer;
begin
for i:= Low(Arr) to High(Arr) do
Arr[i] := 0;
end;