Putting provers in separate files

This commit is contained in:
2026-02-09 23:26:29 +01:00
parent 3fd8414ba2
commit 70afc2a201
8 changed files with 507 additions and 1 deletions

1
1.pl
View File

@ -7,3 +7,4 @@ add(X, s(Y), Z) :- add(s(X), Y, Z).
mult(zero, X, zero).
mult(s(Y), X, Z) :- mult(Y, X, W), add(W, X, Z).