What is the preferred way to create an immutable variable of type long?
var longInt = 10L
val longInt = 10L
const long longInt = 10
val longInt:Long = 10