[Home]
[Edit this page]
[Recent Changes]
[Special Pages]
[Help]
PrologStackOverflow
[Edit this page] [Page history] [What links here] [Discuss this topic] [Printer Friendly]
PrologStackOverflow
(Prolog) Stack overflow
Error most often caused by an infinite recursive predicate.predicates run(integer) clauses run(X) :- Y = X + 1, run(Y), Z = Y + 1, run(Z). goal run(0).
[Edit this page] [Page history] [What links here] [Discuss this topic] [Printer Friendly]
