diff options
author | Rob Pike <r@golang.org> | 2009-01-14 08:43:32 -0800 |
---|---|---|
committer | Rob Pike <r@golang.org> | 2009-01-14 08:43:32 -0800 |
commit | 54fc100103e34151e4e59609cf587d132f5e98bb (patch) | |
tree | fc901f167f2863618f55d47bc39f1cc913471ec3 /doc/progs/helloworld2.go | |
parent | a63ccec27d31a9fca5e29ef5321d4b9f9e863198 (diff) | |
download | golang-54fc100103e34151e4e59609cf587d132f5e98bb.tar.gz |
restore "os" identifier to keep consistent with text.
R=presotto
OCL=22733
CL=22733
Diffstat (limited to 'doc/progs/helloworld2.go')
-rw-r--r-- | doc/progs/helloworld2.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/progs/helloworld2.go b/doc/progs/helloworld2.go index b40905565..66b32ed54 100644 --- a/doc/progs/helloworld2.go +++ b/doc/progs/helloworld2.go @@ -4,7 +4,7 @@ package main -import "os" // this package contains features for basic I/O +import os "os" // this package contains features for basic I/O func main() { os.Stdout.WriteString("Hello, world; or Καλημέρα κόσμε; or こんにちは 世界\n"); |