Structures

//There are no classes in golang

//Calendar is simple struct
type Calendar struct{}

func (c Calendarmonths() int {
    return 12
}

var calendar = Calendar{}
var months = calendar.months()

fmt.Println(months)