This commit is contained in:
arnaucode
2017-04-13 19:29:53 +02:00
parent 0d10f80cef
commit 4addf9d551
6 changed files with 6 additions and 2 deletions

View File

@@ -19,7 +19,7 @@ func printBar(n int) {
func printDays(days map[string]int) {
for i := 0; i < len(week); i++ {
fmt.Print(week[i] + " - " + strconv.Itoa(days[week[i]]))
fmt.Print(week[i] + " - " + strconv.Itoa(days[week[i]]) + "tw")
fmt.Print(" ")
printBar(days[week[i]])
}