Skip to content

Instantly share code, notes, and snippets.

@ritalin
Created December 3, 2012 09:11
Show Gist options
  • Save ritalin/4193781 to your computer and use it in GitHub Desktop.
Save ritalin/4193781 to your computer and use it in GitHub Desktop.
program Project1;
uses
Forms,
Unit1 in 'Unit1.pas' {Form1},
Unit2 in 'Unit2.pas' {DataModule2: TDataModule};
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.CreateForm(TDataModule2, DataModule2);
Application.Run;
end.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment