Oct 17, 2009 #1 bandwand Technical User Oct 17, 2009 1 US When does prolog answer "yes" and when does it answer "true" and does the difference matter?
Oct 17, 2009 #2 joel76 Programmer Aug 31, 2008 295 FR I think it depends of dialects you use. Gnu-Prolog Code: | ?- 4 is 1 + 3. yes SWI-Prolog Code: 1 ?- 4 is 1 + 3. true 2 ?- Upvote 0 Downvote
I think it depends of dialects you use. Gnu-Prolog Code: | ?- 4 is 1 + 3. yes SWI-Prolog Code: 1 ?- 4 is 1 + 3. true 2 ?-