What is the correct way to initialize a nullable variable?
val name = null
var name: String
val name: String
val name: String? = null