User.kt
class User { var name: String = "" }
MainActivity.kt
var user = User().apply{ name = "hoge" } print("user.name=" + user.name) // hoge