Last active
October 5, 2021 18:22
-
-
Save vikingosegundo/ad7bccb070d03bfbda34bd1d35f50e1c 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 connectionsGB: [Border] = [ | |
.land(clyde, edinburgh), | |
.land(clyde, liverpool), | |
.land(edinburgh, liverpool), | |
.land(edinburgh, yorkshire), | |
.land(yorkshire, wales ), | |
.land(yorkshire, london ), | |
] | |
let connectionsFrance: [Border] = [ | |
.land(brest, picardy ), | |
.land(brest, paris ), | |
.land(brest, gascony ), | |
.land(picardy, paris ), | |
.land(picardy, burgundy ), | |
.land(paris, gascony ), | |
.land(paris, burgundy ), | |
.land(gascony, burgundy ), | |
.land(gascony, marseilles), | |
.land(burgundy, marseilles), | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment