@manpage Variables
@#### Local variables
Local variables live on the stack. To declare a local variable:
...or...
@#### Global variables
Global variables live in global memory and exist for the lifetime of the application. To declare a global variable:
...or...
@#### Consts
Consts are stored in the same way as globals, but cannot be modified after they are initialized. To declare a const:
...or...