blob: 03fba13c7703f2011027fefd880d5b03485f2c14 [file] [log] [blame]
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")
}