aboutsummaryrefslogtreecommitdiff
path: root/template/go/snip-max-two.go
blob: 3fc716cc93fcd29f58f986704166f7d1d4364edf (plain)
1
2
3
4
5
6
func max(a, b {{_input_:type}}) {{_input_:type}} {
	if a > b {
		return a
	}
	return b
}