Files
headfirstgo/chapter4/const/planner/main.go
2025-01-30 20:55:42 +03:00

13 lines
225 B
Go

package main
import (
"fmt"
"headfirstgo/golang-book/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")
}