A few more tips:
- There can only be 1 main() function, but there can be many init() functions.
- You do not need to explicitly call init() or main(), they are called automatically.
- init() and main() do not accept any parameters and also don't return anything.
- init() runs before main().
- If you have many init(), they run in the order they are declared.