Created
October 5, 2021 13:46
-
-
Save vikingosegundo/3b59ea19ada3133cab72b98f33d0491d 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 clyde = Territory(name:"Clyde" , kind:.land) | |
let edinburgh = Territory(name:"Edinburgh", kind:.land) | |
let liverpool = Territory(name:"Liverpool", kind:.land) | |
let yorkshire = Territory(name:"Yorkshire", kind:.land) | |
let wales = Territory(name:"Wales" , kind:.land) | |
let london = Territory(name:"London" , kind:.land) | |
let gb = [ clyde, edinburgh, liverpool, yorkshire, wales, london ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment