codebeast
class Person(val name: String) { constructor(name: String, parent: Person) : this(name) { parent.children.add(this) } }
class MyView : View { constructor(ctx: Context) : super(ctx) constructor(ctx: Context, attrs: AttributeSet) : super(ctx, attrs) }
myanmarking
kingsley
A modern programming language that makes developers happier.