Skip to content

Instantly share code, notes, and snippets.

@zackproser
Created October 20, 2019 16:47
Show Gist options
  • Select an option

  • Save zackproser/5db7b10b003e8b6b184509fd887e72e0 to your computer and use it in GitHub Desktop.

Select an option

Save zackproser/5db7b10b003e8b6b184509fd887e72e0 to your computer and use it in GitHub Desktop.
func getNextCatfact(i int) string {
if len(catfacts) == 0 {
panic("Error loading CatFacts")
}
if i < len(catfacts) {
return catfacts[i]
}
return getRandomStringFromSlice(catfacts)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment