Below you will see a Go program with a declaration of the Country struct.
Create an instance of the Country struct within the variable germany and assign values to its fields by using a struct literal or by assigning values to each individual field. The Name of the country is Germany, the Capital is Berlin and the Currency is Euro.
Finally, the program should print each of the germany struct fields, each on a new line.