diff options
Diffstat (limited to 'doc/progs/helloworld2.go')
-rw-r--r-- | doc/progs/helloworld2.go | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/doc/progs/helloworld2.go b/doc/progs/helloworld2.go deleted file mode 100644 index 66b32ed54..000000000 --- a/doc/progs/helloworld2.go +++ /dev/null @@ -1,11 +0,0 @@ -// 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. - -package main - -import os "os" // this package contains features for basic I/O - -func main() { - os.Stdout.WriteString("Hello, world; or Καλημέρα κόσμε; or こんにちは 世界\n"); -} |