benleggiero
extension Int : Comparable<Int> { public operator fun compareTo(other: Int): Int { return if (this == other) 0 else if (this < other) -1 else 1 } }