Ruckus
class BuilderExample(val exampleString: String, val exampleInt: Int) { fun copy(exampleString: String = this.exampleString, exampleInt: Int = this.exampleInt) = BuilderExample(exampleString, exampleInt) }