Skip to content

Instantly share code, notes, and snippets.

@gerep
Created November 18, 2017 00:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gerep/447237c68c5a12cd7654f4fdb8d75720 to your computer and use it in GitHub Desktop.
Save gerep/447237c68c5a12cd7654f4fdb8d75720 to your computer and use it in GitHub Desktop.
Loading animation for terminal
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