val customers = 10
println("There are $customers customers")
// There are 10 customers
// If the variable is not space padded use the form below.
println("There are ${customers + 1} customers")
// There are 11 customers
val customers = 10
println("There are $customers customers")
// There are 10 customers
// If the variable is not space padded use the form below.
println("There are ${customers + 1} customers")
// There are 11 customers