Combining Statements
Three ways to combine statements
- Sequential (...; ...)
- Separate each with a semicolon (statement1; statement2)
- Group using braces ({statement1;statement2})
- Conditional (if ... then ... else or try ... catch ...)
- Loop (do ... while, for ...)
Every possible model can be built with these 3!