Hello World
Hello world program
$ touch hello_world.go
package main
import "fmt"
func main() {
fmt.Println("Hello, 世界")
}
$ go run hello_world.go
Last updated
Was this helpful?
$ touch hello_world.go
package main
import "fmt"
func main() {
fmt.Println("Hello, 世界")
}
$ go run hello_world.go
Last updated
Was this helpful?