github.com/gnolang/gno@v0.0.0-20240520182011-228e9d0192ce/gnovm/tests/files/const8.gno (about) 1 package main 2 3 const ( 4 a = 2 5 b = c + d 6 c = 4 7 d = 5 8 ) 9 10 func main() { 11 println(a, b, c, d) 12 } 13 14 // Output: 15 // 2 9 4 5