Skip to content

Instantly share code, notes, and snippets.

@Olefine
Created October 4, 2017 15:42
Show Gist options
  • Save Olefine/9e85b9f237ca1c343c4ed52b7262f6e6 to your computer and use it in GitHub Desktop.
Save Olefine/9e85b9f237ca1c343c4ed52b7262f6e6 to your computer and use it in GitHub Desktop.
func spinner(delay time.Duration) {
for {
for _, r := range `-\|/` {
fmt.Printf("\r%c", r)
time.Sleep(delay)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment