in core/util.go [9:13]
func reverseSlice(s []LanguageSize) { for i, j := 0, len(s)-1; i < j; i, j = i+1, j-1 { s[i], s[j] = s[j], s[i] } }