gjesse
>>> fun Int.toHex() = this.toString(16) >>> 16.toHex(); 10
karelpeeters
fun Int.toHex() = toString(16)
kingsley
>>> val Int.hex get() = toString(16) >>> 16.hex 10
A modern programming language that makes developers happier.