This commit is contained in:
Maciej Jur 2023-05-15 02:52:23 +02:00
parent 1097325402
commit a0bc721040
2 changed files with 20 additions and 0 deletions

View file

@ -0,0 +1,4 @@
---
title: Title
date: {{date:YYYY-MM-DDTHH:mm:ssZ}}
---

View file

@ -0,0 +1,16 @@
---
title: Category theory, abstract algebra and friends
date: 2023-05-14T21:57:54+02:00
---
## Monoid
$$
(M, *)
$$
```haskell
class Monoid a where
mempty :: a
mappend :: a -> a -> a
```