blob: 9cfeefbba701b8b90da893ea5ba2018054166f9f [file] [log] [blame]
Shenghou Ma1e954292012-08-07 09:38:35 +08001// cmpout
2
Russ Cox133a1582009-10-03 10:37:12 -07003// 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
Russ Coxc3f43192012-03-06 23:27:30 -05007// +build ignore
8
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}