Package-level declarations

Types

Link copied to clipboard
data class Car(val model: String, val inceptionYear: Int, val owner: Person)
Link copied to clipboard
annotation class MarkerAnnotation
Link copied to clipboard
Link copied to clipboard
data class Person(val name: String, val lastName: String, val age: Int, val cars: MutableList<Car> = mutableListOf())