Control flow
This is the syntax of if statements and while loops.
if condition != 0 { while anotherCondtion > 2 { doStuff(); } }
Table of contents
Previous: 1.2 Writing functions