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