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.
{$APPTYPE CONSOLE}
program mytest;
type
myrec = record
float1: extended;
float2: extended;
end;
function myfunc: myrec;
begin
MyFunc.Float1 := 0.12;
MyFunc.Float2 := 0.24;
end;
var
mydata: myrec;
begin
Mydata := MyFunc;
writeln(Mydata.Float1);
writeln(Mydata.Float2);
end.
procedure myproc( out f: extended; out n: cardinal );
...
var
float1: extended;
number: cardinal;
begin
myproc( float1, number );
...