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