swift-for-python-programmers

Conditionals

🏡

1. If

let j = 12

if j != nil {
    print("j is not nil")
}