blob: 5025ec9bb350b85220d867180f931cbe04080f74 [file] [log] [blame]
Brad Fitzpatricke014cf02012-02-24 13:17:26 +11001// cmpout
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}