Concept Flow - Any and AnyObject types
Start
Declare variable of type Any
Assign any value: Int, String, Object
Use variable
Declare variable of type AnyObject
Assign only class instances
Use variable
End
This flow shows how variables of type Any can hold any value, while AnyObject can only hold class instances.