Why is the map printing out of order, and how do I get it in to order?
package main import ( \"fmt\" ) type monthsType struct { no int text s
Maps are not sorted so you may use a slice to sort your map. Mark Summerfield's book "Programming in Go" explains this on page 204 and is highly recommended.