Skip to content

Instantly share code, notes, and snippets.

View Anthony2be's full-sized avatar

Anthony2be Anthony2be

  • Gamer Land
  • 13:50 (UTC -07:00)
View GitHub Profile
@merwane
merwane / fibonacci.go
Created November 23, 2019 19:36
Concurrent Fibonacci sequence calculation w/ Golang
package main
import(
"fmt"
"time"
)
func main(){
defer elapsed()()
jobs := make(chan int, 100)