blob: 939b661e58f378ede7fc0735759d0628c7e7d99c [file] [log] [blame]
env GO111MODULE=off
# hello world
go run hello.go
stderr 'hello world'
-- hello.go --
package main
func main() { println("hello world") }