Files
moxa/_test/const3.go
2018-09-21 11:33:40 +02:00

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