14 lines
247 B
ObjectPascal
Executable file
14 lines
247 B
ObjectPascal
Executable file
program WinPicoGUS;
|
|
|
|
uses
|
|
Forms,
|
|
MainWindow in 'MainWindow.pas' {PicoGusForm},
|
|
Picogus in 'Picogus.pas';
|
|
|
|
{$R *.RES}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm(TPicoGusForm, PicoGusForm);
|
|
Application.Run;
|
|
end.
|