gitlab.com/ethan.reesor/vscode-notebooks/yaegi@v0.0.0-20220417214422-5c573557938e/_test/const8.go (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