Skip to content

Instantly share code, notes, and snippets.

@justinhj
Last active December 10, 2019 04:21
Show Gist options
  • Save justinhj/5c3a7ac3c959414ddbd4a6a4909af6c5 to your computer and use it in GitHub Desktop.
Save justinhj/5c3a7ac3c959414ddbd4a6a4909af6c5 to your computer and use it in GitHub Desktop.
import cats.Monoid
Monoid[Int].empty |+| 10
// res1: Int = 10
10 |+| Monoid[Int].empty
// res2: Int = 10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment