summaryrefslogtreecommitdiff
path: root/doc/progs/helloworld2.go
diff options
context:
space:
mode:
authorRob Pike <r@golang.org>2009-03-18 14:09:16 -0700
committerRob Pike <r@golang.org>2009-03-18 14:09:16 -0700
commitb2dc154421eb830c812e089b2b69a0c728704b5b (patch)
treed1599c2c8816a88bd3673cb13cab4d3f1c8e6e45 /doc/progs/helloworld2.go
parent0bacb74554806871b8d354ed9f07163989bb8755 (diff)
downloadgolang-b2dc154421eb830c812e089b2b69a0c728704b5b.tar.gz
remove print() from the tutorial, generating a little clumsiness around "import"
R=rsc,gri DELTA=103 (36 added, 33 deleted, 34 changed) OCL=26442 CL=26491
Diffstat (limited to 'doc/progs/helloworld2.go')
-rw-r--r--doc/progs/helloworld2.go11
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");
-}