{ Copyright (C) 2008 Peter Green For conditions of distribution and use, see copyright notice in zlib_license.txt which is included in the package ----------------------------------------------------------------------------- } //graph draw test/demo app program graphdraw; uses Forms, graphdrawu in 'graphdrawu.pas' {Form1}; {$R *.RES} begin Application.Initialize; Application.CreateForm(TForm1, Form1); Application.Run; end.