Concept Flow - String is a value type behavior
Create String s1 = "Hello"
Copy s1 to s2 (value copy)
Modify s2 (e.g., append " World")
Check s1 and s2 values
s1 unchanged, s2 changed
End
This flow shows how assigning a string to another variable copies its value, so changing one does not affect the other.