aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/go/testdata/script/run_hello_pkg.txt
blob: 03fba13c7703f2011027fefd880d5b03485f2c14 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
cd $GOPATH
go run hello
stderr 'hello, world'

cd src/hello
go run .
stderr 'hello, world'

-- hello/hello.go --
package main

func main() {
	println("hello, world")
}