xxxxxxxxxx
// You can edit this code!
// Click here and start typing.
package main
import (
"fmt"
"reflect"
)
func Testing() int {
return 20
}
func main() {
fmt.Println(reflect.TypeOf(Testing).NumOut()) // if true = 1 and if false = 0
}