Concept Flow - Let for constants (immutable)
Declare constant with let
Assign value once
Use constant in code
Attempt to change value?
Yes→Error: Cannot modify constant
No
Program continues safely
This flow shows how a constant is declared once with let, assigned a value, used, and cannot be changed later.