Files
headfirstgo/chapter4/const/planner/main.go
2025-01-30 12:04:39 +03:00

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")
}