Skip to content

Instantly share code, notes, and snippets.

@dilumdesilva
Last active October 31, 2020 02:03
Show Gist options
  • Save dilumdesilva/4ca13c3c212ea786fa83f7a3816b43da to your computer and use it in GitHub Desktop.
Save dilumdesilva/4ca13c3c212ea786fa83f7a3816b43da to your computer and use it in GitHub Desktop.
Useful golang code snippets
//Improved random number generator
source := rand.NewSource(time.Now().UnixNano())
r := rand.New(source)
newPos := r.Intn(len(slice) - 1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment