Re: programming a poker game in Prolog



> how can i call a txt file where i wrote my code in GNU Prolog.

most prologs will accept either of

?- consult('/path/to/file').

or

?- ['/path/to/file']

cheers
jeh
.