Created
October 26, 2022 17:59
-
-
Save Breefield/bf810f731a1e60c92ff958a2de7fd794 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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