license header and line ending fixups
[pngwrite.git] / graphdraw.dpr
1 { Copyright (C) 2008 Peter Green \r
2   For conditions of distribution and use, see copyright notice in zlib_license.txt \r
3   which is included in the package \r
4   ----------------------------------------------------------------------------- } \r
5 //graph draw test/demo app\r
6 program graphdraw;\r
7 \r
8 uses\r
9   Forms,\r
10   graphdrawu in 'graphdrawu.pas' {Form1};\r
11 \r
12 {$R *.RES}\r
13 \r
14 begin\r
15   Application.Initialize;\r
16   Application.CreateForm(TForm1, Form1);\r
17   Application.Run;\r
18 end.\r