10 lines
95 B
Go
10 lines
95 B
Go
package main
|
|
|
|
import "fmt"
|
|
|
|
const x string = "Hello World"
|
|
|
|
func main() {
|
|
fmt.Println(x)
|
|
}
|