Reference to const
As we can have a pointer to a constant, we can have a reference to a constant
- The usual purpose is to avoid copying where possible
- Therefore, the compiler will create a copy for us automatically if it cannot be avoided (instead of complaining)