Range operator
var height = 46 // inches
if (height in 1..53) {
println("Sorry, you must be at least 54 inches to ride the coaster")
}
// Prints: Sorry, you must be at least 54 inches to ride the roller coaster
Comments
var height = 46 // inches
if (height in 1..53) {
println("Sorry, you must be at least 54 inches to ride the coaster")
}
// Prints: Sorry, you must be at least 54 inches to ride the roller coaster