...is true
* `else()` - Performs a block of code if a condition is false
* `while()` - Performs a block of code while a condition is true
###6. Functions
Functions are used to group together related code. To define a function, you use the following syntax:
```c#
public static int Add(int a...