Skip to content

Instantly share code, notes, and snippets.

@halilozel1903
Created November 6, 2022 14:37
Show Gist options
  • Save halilozel1903/44c44511b6e48acda9510f14aab4764b to your computer and use it in GitHub Desktop.
Save halilozel1903/44c44511b6e48acda9510f14aab4764b to your computer and use it in GitHub Desktop.
class Car(val horsepowers: Int) {
companion object Factory {
val cars = mutableListOf<Car>()
fun makeCar(horsepowers: Int): Car {
val car = Car(horsepowers)
cars.add(car)
return car
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment