Concept Flow - Reference types behavior
Create Object A
Assign Ref1 = A
Assign Ref2 = Ref1
Modify via Ref2
Check Ref1 shows change
Reassign Ref2 to new Object B
Ref1 still points to A
End
This flow shows how reference types point to the same object, so changes via one reference affect the other, but reassigning a reference breaks the link.