Skip to content

Instantly share code, notes, and snippets.

@178inaba
Created October 30, 2015 06:15
Show Gist options
  • Select an option

  • Save 178inaba/1d8b9c3670ac513f2c3a to your computer and use it in GitHub Desktop.

Select an option

Save 178inaba/1d8b9c3670ac513f2c3a to your computer and use it in GitHub Desktop.
progress bar ...
package main
import (
"fmt"
"time"
)
func main() {
prog := ""
for i := 0; i < 1000; i++ {
fmt.Print("\r" + prog + ">")
prog += "="
time.Sleep(time.Second / 2)
}
fmt.Print("\n")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment