9 lines
80 B
Go
9 lines
80 B
Go
package main
|
|
|
|
import "fmt"
|
|
|
|
func main() {
|
|
x := "Hello World"
|
|
fmt.Println(x)
|
|
}
|