source: trunk/CarRentalSummary.lpr

Last change on this file was 3, checked in by chronos, 12 months ago
  • Modified: Removed U prefix from unit names.
  • Modified: Improved summary calculation.
  • Added: Parsing rent car initial odometer.
File size: 460 bytes
Line 
1program CarRentalSummary;
2
3{$mode objfpc}{$H+}
4
5uses
6 {$IFDEF UNIX}
7 cthreads, clocale,
8 {$ENDIF}
9 {$IFDEF HASAMIGA}
10 athreads,
11 {$ENDIF}
12 Interfaces, // this includes the LCL widgetset
13 Forms, FormMain, Car, PrefixMultiplier
14 { you can add units after this };
15
16{$R *.res}
17
18begin
19 RequireDerivedFormResource:=True;
20 Application.Scaled:=True;
21 Application.Initialize;
22 Application.CreateForm(TFormMain, FormMain.FormMain);
23 Application.Run;
24end.
25
Note: See TracBrowser for help on using the repository browser.