View original Gist on GitHub
Tags: #go
// sample returns True randomly at a percentage of the time func sample(percent int) bool { return rand.Intn(100) < percent }