2018-05-31 18:51:00 +03:00
|
|
|
// run
|
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.
|
|
|
|
|
2012-02-23 18:47:26 +11:00
|
|
|
// Test that we can do page 1 of the C book.
|
|
|
|
|
2008-06-06 13:28:03 -07:00
|
|
|
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
|
|
|
}
|