github.com/gagliardetto/golang-go@v0.0.0-20201020153340-53909ea70814/cmd/go/testdata/script/run_hello.txt (about)

     1  env GO111MODULE=off
     2  
     3  # hello world
     4  go run hello.go
     5  stderr 'hello world'
     6  
     7  -- hello.go --
     8  package main
     9  func main() { println("hello world") }