-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathCRGPSamples.dpr
36 lines (31 loc) · 869 Bytes
/
CRGPSamples.dpr
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
program CRGPSamples;
{ Sample code for the blog post "The Curiously Recurring Generic Pattern" }
{$APPTYPE CONSOLE}
{$WARN SYMBOL_PLATFORM OFF}
{$R *.res}
uses
System.SysUtils,
LinkedList.Standard in 'Samples\LinkedList.Standard.pas',
LinkedList.CRGP in 'Samples\LinkedList.CRGP.pas',
Utils in 'Samples\Utils.pas',
Counter.CRGP in 'Samples\Counter.CRGP.pas',
FluentInterface.Standard in 'Samples\FluentInterface.Standard.pas',
FluentInterface.CRGP in 'Samples\FluentInterface.CRGP.pas';
begin
try
TestLinkedListStandard;
TestLinkedListCRGP;
TestCounterCRGP;
TestFluentInterfaceStandard;
TestFluentInterfaceCRGP;
if (DebugHook <> 0) then
begin
StartSection;
Write('Press [Enter] to continue...');
ReadLn;
end;
except
on E: Exception do
Writeln(E.ClassName, ': ', E.Message);
end;
end.