WinPicoGUS/WinPicoGUS.dpr
2025-06-22 01:35:09 -04:00

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.