diff options
Diffstat (limited to 'doc/progs/helloworld3.go')
-rw-r--r-- | doc/progs/helloworld3.go | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/progs/helloworld3.go b/doc/progs/helloworld3.go index ea567fe1b..5655c7489 100644 --- a/doc/progs/helloworld3.go +++ b/doc/progs/helloworld3.go @@ -5,17 +5,17 @@ package main import ( - "./file"; - "fmt"; - "os"; + "./file" + "fmt" + "os" ) func main() { - hello := []byte{'h', 'e', 'l', 'l', 'o', ',', ' ', 'w', 'o', 'r', 'l', 'd', '\n'}; - file.Stdout.Write(hello); - file, err := file.Open("/does/not/exist", 0, 0); + hello := []byte{'h', 'e', 'l', 'l', 'o', ',', ' ', 'w', 'o', 'r', 'l', 'd', '\n'} + file.Stdout.Write(hello) + file, err := file.Open("/does/not/exist", 0, 0) if file == nil { - fmt.Printf("can't open file; err=%s\n", err.String()); - os.Exit(1); + fmt.Printf("can't open file; err=%s\n", err.String()) + os.Exit(1) } } |