home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng)
/
ProfitPress-MegaCDROM2.B6I
/
MAGAZINE
/
MISC
/
JNFB88.ZIP
/
TAIL.ARC
/
BAKTRAK.PRO
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Prolog Source
|
1987-10-21
|
380 b
|
24 lines
/* BAKTRAK.PRO */
/* Uses backtracking to print
all solutions to a query */
PREDICATES
country(symbol)
print_countries
CLAUSES
country(england).
country(france).
country(germany).
country(denmark).
print_countries :- country(X),
write(X),
nl,
fail.
print_countries.