mirror of
https://github.com/unknwon/the-way-to-go_ZH_CN.git
synced 2025-08-12 04:48:29 +08:00
fix: coding style and file format for chapter 8.
This commit is contained in:
@@ -5,8 +5,8 @@ import (
|
||||
"fmt"
|
||||
)
|
||||
|
||||
var Days = map[int]string{1:"monday",
|
||||
2:"tuesday",
|
||||
var Days = map[int]string{1: "monday",
|
||||
2: "tuesday",
|
||||
3: "wednesday",
|
||||
4: "thursday",
|
||||
5: "friday",
|
||||
@@ -19,7 +19,7 @@ func main() {
|
||||
flagHolliday := false
|
||||
for k, v := range Days {
|
||||
if v == "thursday" || v == "holliday" {
|
||||
fmt.Println(v, " is the ", k , "th day in the week")
|
||||
fmt.Println(v, " is the ", k, "th day in the week")
|
||||
if v == "holliday" {
|
||||
flagHolliday = true
|
||||
}
|
||||
@@ -29,6 +29,7 @@ func main() {
|
||||
fmt.Println("holliday is not a day!")
|
||||
}
|
||||
}
|
||||
|
||||
/* Output:
|
||||
thursday is the 4 th day in the week
|
||||
holliday is not a day!
|
||||
|
@@ -43,6 +43,7 @@ func main() {
|
||||
fmt.Printf("The french for %s is %s\n", eng, drinks[eng])
|
||||
}
|
||||
}
|
||||
|
||||
/* Output:
|
||||
The following drinks are available:
|
||||
wine
|
||||
|
Reference in New Issue
Block a user