Introduction
We use const val to create values that never change. This helps keep our program safe and clear.
When you have a value like Pi that should stay the same everywhere.
When you want to name a fixed number like the maximum score in a game.
When you need a constant string like a URL or a key name.
When you want to avoid repeating the same value in many places.
When you want to make your code easier to read and maintain.