Golang practice

Since I made so much progress in Lazarus, decided to push it aside and play with Go some more. Played with arrays. Go doesn’t allow you to mix types in arrays. To get around that I used Go’s struct keyword. So the struct itself can consist of many types. Then create an array of type struct! Pascal has the RECORD type which seems like Go’s struct.