var age = 19
var message = if age < 21 {
   "Underage"  // "Underage"
} else {
   "Allowed"
}