### What it does
`exit()`  terminates the program and doesn't provide a
stack trace.

### Why is this bad?
Ideally a program is terminated by finishing
the main function.

### Example
```
std::process::exit(0)
```