1 2 3 4 5 6 7 8 9 10
package b func B(x int) int { if x == 0 { return 22 } else if x == 1 { return 33 } return 44 }