Skip to content

Instantly share code, notes, and snippets.

@vcastellm
Created October 3, 2011 15:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vcastellm/1259375 to your computer and use it in GitHub Desktop.
Save vcastellm/1259375 to your computer and use it in GitHub Desktop.
Fibonacci Go
package main
import (
"fmt"
"net/http"
"log"
)
func fibonacci(n int) int {
var result int
if n < 2 {
result = 1
} else {
result = fibonacci(n-2) + fibonacci(n-1)
}
return result
}
func main() {
http.HandleFunc("/", func(w http.ResponseWriter, req *http.Request) {
w.Write([]byte(fmt.Sprintf("%d", fibonacci(40))))
})
log.Fatal(http.ListenAndServe(":8080", nil))
}
@vcastellm
Copy link
Author

I'm getting 8s for nodejs

$ time curl http://localhost:1337/
165580141
real 0m7.952s
user 0m0.003s
sys 0m0.004s

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment