What\'s the proper way of calling functions when evaluating their values in conditional statements?
package main import \"fmt\" func main(){ if sumTh
You've forgotten to declare a return value. It should be:
func sumThis(a, b int) int { // ...