github.com/gnolang/gno@v0.0.0-20240520182011-228e9d0192ce/gnovm/tests/backup/shift3.gno (about) 1 package main 2 3 const a = 1.0 4 5 const b = a + 3 6 7 func main() { println(b << (1)) } 8 9 // Output: 10 // 8