``` extension Int : Monoid { fun Int.combine(b...
# arrow-contributors
a
Copy code
extension Int : Monoid {
    fun Int.combine(b: Int): Int = this + b
    fun Int.Companion.empty(): Int = 0
}