Hello World
package main
import "fmt"
func main() {
fmt.Println("Hello, World!")
}Run the program
$ go run hello_world.go
Hello, World!Additional Resources
Last updated
Was this helpful?
package main
import "fmt"
func main() {
fmt.Println("Hello, World!")
}Run the program
$ go run hello_world.go
Hello, World!Last updated
Was this helpful?