13 lines
227 B
Go
13 lines
227 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"golang-book/head-first-go/chapter4/const/dates"
|
|
)
|
|
|
|
func main() {
|
|
days := 3
|
|
fmt.Println("Your appointment is", days, "days")
|
|
fmt.Println("with a follow-up in", days+dates.DaysInWeek, "days")
|
|
}
|