Skip to content

Instantly share code, notes, and snippets.

@mythril
Created October 1, 2013 08:28
Show Gist options
  • Save mythril/6775420 to your computer and use it in GitHub Desktop.
Save mythril/6775420 to your computer and use it in GitHub Desktop.
func randRune() rune {
var newRune rune
for {
newRune = rune(randGen.Uint32())
if utf8.ValidRune(newRune) {
return newRune
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment