commit | 126150d0f665e1a5a5103f85f4d7b1ff97f71f9d | [log] [tgz] |
---|---|---|
author | Rob Pike <r@golang.org> | Fri Jun 06 13:28:03 2008 -0700 |
committer | Rob Pike <r@golang.org> | Fri Jun 06 13:28:03 2008 -0700 |
tree | 9fc78195cd6f45b370bba69597b64afd6e0f7bb3 | |
parent | 27fb2abf76f53168862b5140df1cad95b5804fe6 [diff] [blame] |
lots of new tests SVN=121464
diff --git a/test/helloworld.go b/test/helloworld.go new file mode 100644 index 0000000..ae1f264 --- /dev/null +++ b/test/helloworld.go
@@ -0,0 +1,12 @@ +// $G $F.go && $L $F.$A && ./$A.out + +// 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. + +package main + +func main() int { + print "hello, world\n"; + return 0; +}