blob: ea2b4d7cdeef908e178d496294a161a070c1f894 [file] [log] [blame]
go run m/hello
stderr 'hello, world'
cd hello
go run .
stderr 'hello, world'
-- go.mod --
module m
go 1.16
-- hello/hello.go --
package main
func main() {
println("hello, world")
}