Created
March 6, 2021 12:33
-
-
Save Edudjr/ddafd03284744e714ff14bee7f8c471e to your computer and use it in GitHub Desktop.
This file contains hidden or 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
let animals: [Animal] = [ | |
Dog(name: "Doggy", age: 3), | |
Horse(name: "Horsy", age: 5) | |
] | |
let pages = animals.map { PageDetails(animal: $0) } | |
let listView = ListView(pages: pages, animals: animals) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment