Files
yaegi/_test/const3.go
T

9 lines
97 B
Go

package main
const a, b, c int = 1, 2, 3
func main() { println(a, b, c) }
// Output:
// 1 2 3