Go language # hello.gopackage main import "fmt" func main() { fmt.Println("Hello, World") } # run sourcego run hello.go# buildgo build hello.go