4Lesson 4 of 20
Run top-level Swift statements
A tiny Swift file can be this simple: print("Hello") on line 1, then print("Goodbye") on line 2. When you run it, Swift starts at the first runnable line and moves downward.
print("Hello")
print("Goodbye")