...

Text file src/cmd/go/testdata/script/run_hello.txt

Documentation: cmd/go/testdata/script

     1env GO111MODULE=off
     2
     3# hello world
     4go run hello.go
     5stderr 'hello world'
     6
     7-- hello.go --
     8package main
     9func main() { println("hello world") }

View as plain text