1 2 3 4 5 6 7 8 9
func max(a []{{_input_:type}}) {{_input_:type}} { m := a[0] for _, v := range a { if v > m { m = v } } return m }