Retro68/gcc/libgo/misc/cgo/stdio/hello.go

16 lines
303 B
Go
Raw Normal View History

2019-06-02 15:48:37 +00:00
// run -tags=use_go_run
2018-12-28 15:30:48 +00: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.
// +build test_run
package main
import "../stdio"
func main() {
stdio.Stdout.WriteString(stdio.Greeting + "\n")
}