Concept Flow - Object declaration syntax
Start
Declare object with 'object' keyword
Define properties and methods inside
Use object directly without instantiation
Access properties/methods
End
This flow shows how Kotlin's object declaration creates a singleton object with properties and methods that can be used directly.