Skip to content

Instantly share code, notes, and snippets.

@holys
Created October 27, 2014 11:24
Show Gist options
  • Save holys/c289d0a34755fe82b8fb to your computer and use it in GitHub Desktop.
Save holys/c289d0a34755fe82b8fb to your computer and use it in GitHub Desktop.
package main
import (
"fmt"
)
func a(i int) int {
i = i + 1
if i <= 0 {
return a(i)
}
return i
}
func main() {
fmt.Print(a(-1))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment