mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-22 23:26:40 -08:00
19 lines
169 B
ObjectPascal
19 lines
169 B
ObjectPascal
program aceyducey;
|
|
|
|
{$IFDEF FPC}
|
|
{$mode objfpc}{$H+}
|
|
{$ENDIF}
|
|
|
|
uses
|
|
Game
|
|
, Deck
|
|
;
|
|
|
|
var
|
|
Acey_Ducey: TGame;
|
|
|
|
begin
|
|
Acey_Ducey:= TGame.Create;
|
|
Acey_Ducey.Run;
|
|
end.
|