github.com/gnolang/gno@v0.0.0-20240520182011-228e9d0192ce/gnovm/tests/files/const13.gno (about) 1 package main 2 3 import ( 4 "fmt" 5 ) 6 7 func main() { 8 const tooBig = 1267650600228229401496703205376 9 const huge = 1 << 100 10 const large = huge >> 38 11 12 fmt.Println(large) 13 } 14 15 // Output: 16 // 4611686018427387904