Files
2025-08-17 14:50:15 +02:00

7 lines
69 B
Prolog

a(t(K),K) :- ground(K).
test :- a(t(3), M), M=M.
?- test.
true.