We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Correct...
$ tpl ?- freeze(Y,write(ok)),(X=Y;true),Y=123. ok Y = 123, X = Y ; ok Y = 123. ?- $ tpl
Incorrect...
?- _=[X,Y],freeze(Y,write(ok)),(X=Y;true),Y=123. ok X = 123, Y = X ; ok Y = 123, freeze:freeze(X,write(ok)). ?-
The text was updated successfully, but these errors were encountered:
More...
$ tpl ?- freeze(Y,write(ok)),(true;true). freeze:freeze(Y,write(ok)) ; true. ?-
On backtracking Y should still be frozen.
Sorry, something went wrong.
Fix for freeze/2 second example, re issue #44
d5b68db
Fix for freeze/2 first example, re issue #44
85b35c0
No branches or pull requests
Correct...
Incorrect...
The text was updated successfully, but these errors were encountered: