blob: 63bff4c617a1371a152c4cec51896ed318585011 [file] [log] [blame]
Russ Cox84dc5012017-10-27 14:11:21 -04001// cmpout -tags=use_go_run
Shenghou Ma1e954292012-08-07 09:38:35 +08002
Emmanuel Odeke53fd5222016-04-10 14:32:26 -07003// Copyright 2009 The Go Authors. All rights reserved.
Russ Cox133a1582009-10-03 10:37:12 -07004// Use of this source code is governed by a BSD-style
5// license that can be found in the LICENSE file.
6
Russ Cox05390a02015-12-04 22:51:03 -05007// +build test_run
Russ Coxc3f43192012-03-06 23:27:30 -05008
Russ Cox133a1582009-10-03 10:37:12 -07009package main
10
Russ Coxc3f43192012-03-06 23:27:30 -050011import "../stdio"
Russ Cox133a1582009-10-03 10:37:12 -070012
13func main() {
Russ Cox0432f282010-07-14 17:17:53 -070014 stdio.Stdout.WriteString(stdio.Greeting + "\n")
Russ Cox133a1582009-10-03 10:37:12 -070015}