mirror of
https://github.com/unknwon/the-way-to-go_ZH_CN.git
synced 2025-08-12 04:48:29 +08:00
23 lines
443 B
Go
Executable File
23 lines
443 B
Go
Executable File
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)
|
|
}
|
|
}
|