home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Complete Encyclopedia of Games 3
/
GAMES1000V3_d2.iso
/
card
/
cardws17
/
inc
/
sequence.cdh
< prev
next >
Wrap
Text File
|
1994-02-06
|
308b
|
20 lines
#ifndef cwssequence
#define cwssequence
#include 'predicate.cdh'
stack predicate KingToAceSuit? is
var i : integer;
begin
if !<13 then return FALSE;
i:=13;
while i>1 do
begin
if not FollowSuit?([i-1],[i]) then return FALSE;
i:=i-1;
end;
return TRUE;
end;
#endif