Componentes.Terceros.jvcl/internal/3.36/1/examples/JvManagedThreads/Philosophers/Philosophers.dpr
2009-03-04 12:31:55 +00:00

14 lines
256 B
ObjectPascal

program Philosophers;
uses
Forms,
fPhilosophers in 'fPhilosophers.pas' {frmDiningPhilosophers};
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TfrmDiningPhilosophers, frmDiningPhilosophers);
Application.Run;
end.