Skip to content

Instantly share code, notes, and snippets.

@Breefield
Created October 26, 2022 17:59
Show Gist options
  • Save Breefield/bf810f731a1e60c92ff958a2de7fd794 to your computer and use it in GitHub Desktop.
Save Breefield/bf810f731a1e60c92ff958a2de7fd794 to your computer and use it in GitHub Desktop.
data class Animal(
val name: String
)
data class Farm(
val animals: List<Animal> = emptyList(),
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment