1
0

Initial Commit

This commit is contained in:
2021-03-28 20:25:57 +01:00
commit 3a721ac0b4
9 changed files with 127 additions and 0 deletions

8
City.go Normal file
View File

@@ -0,0 +1,8 @@
package main
type City struct {
Name string
Area int
Population int
Mayor Person
}