summaryrefslogtreecommitdiff
path: root/libgo/go/cmd/go/testdata/script/run_hello.txt
blob: 8c4c1c16833e97f7fa4226097bb731d560daa938 (plain)
1
2
3
4
5
6
7
# hello world
go run hello.go
stderr 'hello world'

-- hello.go --
package main
func main() { println("hello world") }