Differentiate between constants and read-only variables.
| Constants | Read-only Variables |
| Evaluated at compile time. | Evaluated at run-time. |
| Support only value-type variables. | Support reference type variables. |
| Cannot be initialized at the time of declaration. | Can be initialized at the time of declaration. |
