Concept Flow - String freezing for immutability
Create String object
Freeze String with .freeze
Attempt to modify String
Error raised: can't modify frozen String
String remains unchanged
This flow shows creating a string, freezing it to make it immutable, and what happens when you try to change it.