Concept Flow - Existential types (any keyword)
Define Protocol
Declare variable with 'any Protocol'
Assign instance conforming to Protocol
Use variable to call protocol methods
Runtime dispatch to actual implementation
This flow shows how a variable declared with 'any' holds any instance conforming to a protocol and calls its methods at runtime.