Created
September 9, 2018 19:35
-
-
Save jjant/0bfcbcb6417c36d4f49327aa79e6a591 to your computer and use it in GitHub Desktop.
First attempt at writing a free monoid
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 FreeMonoid1 t | |
| = Zero | |
| | Val t | |
| | Combine (FreeMonoid1 t) (FreeMonoid1 t) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment