Created
September 11, 2019 15:29
-
-
Save MarcJacques/03b8c5a932f071fccc62a453bdc10c20 to your computer and use it in GitHub Desktop.
Code Challenge #5
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
| import UIKit | |
| struct Country { | |
| let name: String | |
| let capital: String | |
| let altSpellings:[String] | |
| let population: Int | |
| let timeZones: [String] | |
| let currencies: [CurrencySymbol] | |
| let languages: [Name] | |
| let flag: URL | |
| } | |
| struct CurrencySymbol { | |
| let symbol: String | |
| } | |
| struct Name { | |
| let name: String | |
| } |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@JDB0rg