mirror of
https://github.com/traefik/yaegi.git
synced 2026-06-01 18:37:56 +00:00
9 lines
97 B
Go
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
|