mirror of
https://github.com/bootdotdev/fcc-learn-golang-assets.git
synced 2025-12-11 15:51:16 +00:00
13 lines
219 B
Go
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)
|
|
}
|