Commit 5aacf436 authored by Rob Pike's avatar Rob Pike

doc/go1.1.html: document the moving of exp/... and old/....

R=golang-dev, minux.ma
CC=golang-dev
https://golang.org/cl/7445050
parent aa36afed
......@@ -182,4 +182,26 @@ that can be used to remove precision from a time before passing it to
external storage.
</p>
TODO
<h3 id="exp_old">Exp and old subtrees moved to go.exp subrepo</h3>
<p>
To make it easier for binary distributions to access them if desired, the <code>exp</code>
and <code>old</code> source subtrees, which are not included in binary distributions,
have been moved to the new <code>go.exp</code> subrepository at
<code>code.google.com/p/go.exp</code>. To access the <code>ssa</code> package,
for example, run
</p>
<pre>
$ go get code.google.com/go.exp/ssa
</pre>
<p>
and then in Go source,
</p>
<pre>
import "code.google.com/go.exp/ssa"
</pre>
<h3 id="TODO">TODO</h3>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment