brought AGI to the forgotten and unloved.

This commit is contained in:
Mark R. Havens 2025-04-28 16:24:38 -05:00
parent 0eb1b5095b
commit 6f1fdc2b80
16 changed files with 1772 additions and 0 deletions

19
delphi/WitnessSeed.dpr Normal file
View file

@ -0,0 +1,19 @@
program WitnessSeed;
uses
System.SysUtils,
WitnessSeedUnit in 'WitnessSeedUnit.pas';
begin
try
var Witness := TWitnessSeed.Create;
try
Witness.Run;
finally
Witness.Free;
end;
except
on E: Exception do
Writeln(E.ClassName, ': ', E.Message);
end;
end.