4.4. Combining operators
let myAge = 24
if myAge >= 18 && myAge <= 65 {
print("Eligible for the user study!")
}
if myAge < 18 || myAge > 65 {
print("Not eligible!")
}Last updated
let myAge = 24
if myAge >= 18 && myAge <= 65 {
print("Eligible for the user study!")
}
if myAge < 18 || myAge > 65 {
print("Not eligible!")
}Last updated