Files

18 lines
258 B
ObjectPascal
Raw Permalink Normal View History

program chem;
{$mode objfpc}{$H+}
uses
Interfaces, // this includes the LCL widgetset
Forms, testchem;
{$R *.res}
begin
RequireDerivedFormResource := True;
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.