Created
May 6, 2020 01:58
-
-
Save DreamLinuxer/107e809253059567219dc33fa920cc37 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
data Zero | |
data One = TT | |
data πΉ = π½ | π | |
data T = C1 | C2 (πΉ,πΉ) | |
f :: T <-> T | |
f C1 = C2 (π½,π½) | |
f (C2 (π,x)) = C2 (x,π) | |
f (C2 (π½,π½)) = C1 | |
f (C2 (π½,π)) = C2 (π,π½) | |
not :: πΉ <-> πΉ | |
not π = π½ | |
not π½ = π |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment