Files
bootdotdev-fcc-learn-golang…/course/2-variables/exercises/8-computed_constants/code.go
wagslane 9be3074de6 first
2023-05-01 15:25:27 -06:00

13 lines
219 B
Go

package main
import "fmt"
func main() {
const secondsInMinute = 60
const minutesInHour = 60
const secondsInHour = // ?
// don't edit below this line
fmt.Println("number of seconds in an hour:", secondsInHour)
}