class Geschwindigkeit(var geschw : Int) { fun plus(nocheine : Geschwindigkeit) : Int { geschw += nocheine.geschw return geschw } } [...] var a = Geschwindigkeit(12) var b = Geschwindigkeit(18) println( a + b )