Slackbot
octylFractal
Kristoffer Andersen
class A<T>(val contents: T) fun <T : Number> A<T>.foo(): Int = contents.toInt() + 4 val x = A(4).foo() val y = A("Test").foo()
Kroppeb
A modern programming language that makes developers happier.