let a: Bool ! true false. , , , .
.
let a: Bool
a = true
if a {
}
, a .
let a: Bool
if thingOne < thingTwo {
a = true
} else {
a = false
}
if a {
}
, a , .
let a: Bool
if thingOne < thingTwo {
a = true
}
if a {
}
, , , var, .
var a: Bool?
if a == true {
}