Skip to content

Instantly share code, notes, and snippets.

View milanij's full-sized avatar

James Milani milanij

  • Yonomi | Allegion
  • Boulder, CO
View GitHub Profile

Keybase proof

I hereby claim:

  • I am milanij on github.
  • I am milanij (https://keybase.io/milanij) on keybase.
  • I have a public key ASCXa0Q88V6e2ukLCT3Ki3dyxRam3u0vF5asOxRQ1iIa4wo

To claim this, I am signing this object:

@milanij
milanij / sieve_of_eratosthenes.go
Last active March 21, 2018 22:46
Calculate Primes in Go
package main
import (
"fmt"
)
func main() {
fmt.Println(Primes(200))
}