Concept Flow - Any type as universal base
Start
Declare variable of type Any
Assign any value: Int, String, Boolean, etc.
Use variable (print, check type, cast)
End
In Kotlin, Any is the universal base type. You can store any value in a variable of type Any and then use or cast it as needed.