delphi_plotter/Plotter.dpr
2018-02-17 19:43:11 +01:00

15 lines
206 B
ObjectPascal

program Plotter;
uses
Forms,
fgraph in 'fgraph.pas' {fGraph},
graph in 'graph.pas';
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TfGraph, formGraph);
Application.Run;
end.