blob: 9c33cab3bead337eb60b9156ebbc70e57e198476 [file] [log] [blame]
Ian Lance Taylor5e77b002012-01-18 16:12:24 -08001// $G $F.go && $L $F.$A && ./$A.out 2>&1 | cmp - $D/$F.out
Rob Pike126150d2008-06-06 13:28:03 -07002
3// Copyright 2009 The Go Authors. All rights reserved.
4// Use of this source code is governed by a BSD-style
5// license that can be found in the LICENSE file.
6
Rob Pike501f0b52012-02-23 18:47:26 +11007// Test that we can do page 1 of the C book.
8
Rob Pike126150d2008-06-06 13:28:03 -07009package main
10
Rob Pike34cb7c22008-06-27 14:15:06 -070011func main() {
Rob Pike4f61fc92010-09-04 10:36:13 +100012 print("hello, world\n")
Rob Pike126150d2008-06-06 13:28:03 -070013}