diff options
Diffstat (limited to 'test/helloworld.go')
-rw-r--r-- | test/helloworld.go | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/test/helloworld.go b/test/helloworld.go new file mode 100644 index 0000000..06851d1 --- /dev/null +++ b/test/helloworld.go @@ -0,0 +1,13 @@ +// run + +// Copyright 2009 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Test that we can do page 1 of the C book. + +package main + +func main() { + print("hello, world\n") +} |