gofunge98/pkg/stack/min.go

8 lines
78 B
Go

package stack
func min(a, b int) int {
if a < b {
return a
}
return b
}