gobyexample/005-literal.go
2012-09-20 22:09:22 -07:00

9 lines
80 B
Go

package main
import "fmt"
func main() {
x := "Hello World"
fmt.Println(x)
}