gobyexample/07-literal.go
2012-09-20 20:49:36 -07:00

9 lines
80 B
Go

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