标签: prolog
如何在prolog中停止程序?就像我想做的那样:
stop(X) :- X =:= 0 -> // (stop the program).
答案 0 :(得分:1)
您可以使用halt / 0谓词:
stop(X) :- X =:= 0 -> halt.