|| Operator
|| performs logical OR of two Bool values. See also &&.
True || True
True || False
False || True
False || False
Note that || does not currently use short-circuiting, so both sides are
evaluated.
False || fun() {
println("hello")
False
}()