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