mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-21 14:50:54 -08:00
Spaces tend to cause annoyances in a Unix-style shell environment. This change fixes that.
20 lines
170 B
ObjectPascal
20 lines
170 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.
|
|
|