mirror of
https://github.com/ulfgebhardt/delphi_plotter.git
synced 2025-12-12 15:25:53 +00:00
15 lines
206 B
ObjectPascal
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.
|