2012-01-18 16:12:24 -08:00
|
|
|
// $G $F.go && $L $F.$A && ./$A.out 2>&1 | cmp - $D/$F.out
|
2008-06-06 13:28:03 -07:00
|
|
|
|
|
|
|
// 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
|
|
|
|
|
2008-06-27 14:15:06 -07:00
|
|
|
func main() {
|
2010-09-04 10:36:13 +10:00
|
|
|
print("hello, world\n")
|
2008-06-06 13:28:03 -07:00
|
|
|
}
|