gofunge98/pkg/stack/min.go

9 lines
78 B
Go
Raw Normal View History

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