Added loading-bar exercise

This commit is contained in:
raul 2024-02-21 18:07:30 +01:00
parent a806cecefa
commit fa8a997395
2 changed files with 17 additions and 0 deletions

3
loading-bar/go.mod Normal file
View File

@ -0,0 +1,3 @@
module loading-bar
go 1.22.0

14
loading-bar/main.go Normal file
View File

@ -0,0 +1,14 @@
package main
import (
"fmt"
"time"
)
func main() {
for i := 0; i < 101; i++ {
fmt.Printf("\rLoading... %v%%", i)
time.Sleep(50 * time.Millisecond)
}
fmt.Printf("\n")
}