Add missing source file to typeclasses-are-logic post

This commit is contained in:
Danila Fedorin 2023-01-29 21:12:10 -08:00
parent b492c2d0fb
commit 846d85bb7a
1 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,7 @@
show(unit).
show(list(X)) :- show(X).
show(pair(X,Y)) :- show(X), show(Y).
eq(X) :- ord(X).
eq(nat).
ord(nat).