Golang
Show Hello World
in Golang
Show "Hello World" on standard output.
hello_world.go
package main
import "fmt"
func main() {
fmt.Print("Hello World\n")
}
Result
$ go run hello_world.go
Hello World