Skip to content

Instantly share code, notes, and snippets.

View jnormington's full-sized avatar

Jon Normington jnormington

  • London, United Kingdom
View GitHub Profile
@jnormington
jnormington / panic_rng.go
Created July 17, 2018 13:52
Basic example of a go program which panic math/rng because of vet/feed not being thread safe :(
package main
import (
"fmt"
"math/rand"
"sync"
)
var (
seed = int64(1531832676684917546)