Concept Flow - Read-only variables (readonly)
Declare variable
Make variable readonly
Try to change variable
Error: cannot modify readonly variable
Use variable as is
End
You declare a variable, mark it readonly, then any attempt to change it causes an error, preserving its value.