aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/go/testdata/script/run_hello.txt
blob: 939b661e58f378ede7fc0735759d0628c7e7d99c (plain)
1
2
3
4
5
6
7
8
9
env GO111MODULE=off

# hello world
go run hello.go
stderr 'hello world'

-- hello.go --
package main
func main() { println("hello world") }