Concept Flow - Variable declaration using const
Start
Declare const variable
Assign initial value
Use variable
Try to reassign?
Yes→Error: Cannot reassign const
No
End
This flow shows declaring a constant variable, assigning it once, using it, and that reassignment causes an error.