mirror of
https://github.com/unknwon/the-way-to-go_ZH_CN.git
synced 2025-08-12 02:16:48 +08:00
update book code
This commit is contained in:
22
eBook/exercises/chapter_9/main_greetings.go
Executable file
22
eBook/exercises/chapter_9/main_greetings.go
Executable file
@@ -0,0 +1,22 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"./greetings/greetings"
|
||||
)
|
||||
|
||||
func main() {
|
||||
name := "James"
|
||||
fmt.Println(greetings.GoodDay(name))
|
||||
fmt.Println(greetings.GoodNight(name))
|
||||
|
||||
if greetings.IsAM() {
|
||||
fmt.Println("Good morning", name)
|
||||
} else if greetings.IsAfternoon(){
|
||||
fmt.Println("Good afternoon", name)
|
||||
} else if greetings.IsEvening(){
|
||||
fmt.Println("Good evening", name)
|
||||
} else {
|
||||
fmt.Println("Good night", name)
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user