Swift Tutorial

Swift If...Else

Source: Bro Code

Conditional Statements

Use conditions to run different code paths based on logical tests.

SWIFT
if score >= 90 { print("A") }
Try it Yourself
Run this SWIFT example in your local environment or course sandbox.