2012-08-07 09:38:35 +08:00
|
|
|
// cmpout
|
|
|
|
|
2016-04-10 14:32:26 -07:00
|
|
|
// Copyright 2009 The Go Authors. All rights reserved.
|
2009-10-03 10:37:12 -07:00
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2015-12-04 22:51:03 -05:00
|
|
|
// +build test_run
|
2012-03-06 23:27:30 -05:00
|
|
|
|
2009-10-03 10:37:12 -07:00
|
|
|
package main
|
|
|
|
|
2012-03-06 23:27:30 -05:00
|
|
|
import "../stdio"
|
2009-10-03 10:37:12 -07:00
|
|
|
|
|
|
|
func main() {
|
2010-07-14 17:17:53 -07:00
|
|
|
stdio.Stdout.WriteString(stdio.Greeting + "\n")
|
2009-10-03 10:37:12 -07:00
|
|
|
}
|