Sam Stone
class Foo( var x: Int = 0 var y: Int set(value) { field = value x += value } )
Loney Chou
Adam S
y
class Foo( var x: Int = 0, y: Int, // initial value of y ) { var y: Int = y // set the initial value of y set(value) { field = value x += value } }
Ayfri
Ruckus
elizarov
solonovamax
A modern programming language that makes developers happier.