gobyexample/testbench/testbench.go

10 lines
86 B
Go

package testbench
func IntMin(a, b int) int {
if a < b {
return a
}
return b
}