the-evolution-of-a-go-programmer
the-evolution-of-a-go-programmer copied to clipboard
Not using return variables
// Factorial returns !n.
func Factorial(n int) (res int) {
res = 1
...
}