mirror of
https://gitee.com/johng/gf
synced 2026-07-07 22:27:06 +08:00
10 lines
98 B
Go
10 lines
98 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"math"
|
|
)
|
|
|
|
func main() {
|
|
fmt.Println(int(math.MaxInt64))
|
|
} |