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.
interface
var global_var1 : integer;
global_var2 : integer;
implementation
var local_var1 : integer;
local_var2 : integer;
end.
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs;
type
TForm1 = class(TForm)
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.DFM}
end.