11 lines
82 B
Go
11 lines
82 B
Go
package main
|
|
|
|
func main() {
|
|
println(a)
|
|
}
|
|
|
|
const a = "hello"
|
|
|
|
// Output:
|
|
// hello
|