Concept Flow - Store contract (subscribe method)
Create Store
Call subscribe(callback)
Add callback to subscribers list
Immediately call callback with current value
Return unsubscribe function
When unsubscribe called -> Remove callback
When store value changes -> Call all subscribers
This flow shows how subscribing to a Svelte store adds a callback, calls it immediately with the current value, and returns an unsubscribe function to stop updates.