This repository has been archived on 2025-09-23. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
2025LogProg-project-GhentPr.../examples/scratchpad.pl
2025-04-15 15:37:05 +02:00

2 lines
No EOL
51 B
Prolog

not_equal(X, Y) :- X = Y, !, fail.
not_equal(_, _).