1
0
mirror of https://github.com/golang/go synced 2024-11-22 02:34:40 -07:00

codelab/index.html "os" needs to be imported because os.Error is used almost immediately

Also, calling fmt, ioutil and os "builtin" is probably confusing.

R=adg
CC=golang-dev
https://golang.org/cl/965045
This commit is contained in:
Andrey Mirtchovski 2010-04-29 14:06:27 +10:00 committed by Andrew Gerrand
parent 718da3339a
commit ad26019ba6

View File

@ -58,13 +58,15 @@ package main
import ( import (
"fmt" "fmt"
"io/ioutil" "io/ioutil"
"os"
) )
</pre> </pre>
<p> <p>
Both <code>fmt</code> and <code>ioutil</code> are built-in packages that We import the <code>fmt</code>, <code>ioutil</code> and <code>os</code>
we'll be using. Later, as we implement additional functionality, we will add packages from the Go standard library. Later, as we implement additional
more packages to this <code>import</code> declaration. functionality, we will add more packages to this <code>import</code>
declaration.
</p> </p>
<h2>Data Structures</h2> <h2>Data Structures</h2>
@ -304,6 +306,7 @@ import (
"fmt" "fmt"
<b>"http"</b> <b>"http"</b>
"io/ioutil" "io/ioutil"
"os"
) )
</pre> </pre>