mirror of
https://github.com/TehPeGaSuS/xmasbot.git
synced 2026-07-09 16:25:45 +02:00
14 lines
150 B
Go
14 lines
150 B
Go
package main
|
|
|
|
import (
|
|
_ "embed"
|
|
"fmt"
|
|
"math"
|
|
"time"
|
|
)
|
|
|
|
func main() {
|
|
secs := int(time.Duration(math.MaxInt64) / time.Hour)
|
|
fmt.Println(secs)
|
|
}
|