]> Cypherpunks repositories - gostls13.git/commitdiff
process tutorial into new format
authorRob Pike <r@golang.org>
Wed, 23 Sep 2009 19:31:57 +0000 (12:31 -0700)
committerRob Pike <r@golang.org>
Wed, 23 Sep 2009 19:31:57 +0000 (12:31 -0700)
R=rsc
DELTA=161  (57 added, 56 deleted, 48 changed)
OCL=34926
CL=34929

doc/go_tutorial.head [new file with mode: 0644]
doc/go_tutorial.html
doc/go_tutorial.txt

diff --git a/doc/go_tutorial.head b/doc/go_tutorial.head
new file mode 100644 (file)
index 0000000..c6977bd
--- /dev/null
@@ -0,0 +1,8 @@
+<div id="content">
+<h1 id="Lets_Go">Let's Go</h1> 
+
+  <!-- The Table of Contents is automatically inserted in this <div>.
+       Do not delete this <div>. -->
+  <div id="nav"></div>
+
+<h2>Introduction</h2>
index b801f8e3690f7ca96742197a122cda4b8b57c8d0..1029d744d8a3790a0062ce0d3a0af087bade83e3 100644 (file)
@@ -1,10 +1,10 @@
-<h1>Let's Go</h1>
-<p>
-Rob Pike
-<p>
-<hr>
-(March 18, 2009)
-<p>
+<h1 id="Lets_Go">Let's Go</h1> 
+
+  <!-- The Table of Contents is automatically inserted in this <div>.
+       Do not delete this <div>. -->
+  <div id="nav"></div>
+
+<h2>Introduction</h2>
 <p>
 This document is a tutorial introduction to the basics of the Go systems programming
 language, intended for programmers familiar with C or C++. It is not a comprehensive
@@ -12,13 +12,13 @@ guide to the language; at the moment the document closest to that is the draft
 specification:
 <p>
 <pre>
-    /doc/go_spec.html
+    http://go/go/doc/go_spec.html
 
 </pre>
 To check out the compiler and tools and be ready to run Go programs, see
 <p>
 <pre>
-    /doc/go_setup.html
+    http://go/go/doc/go_setup.html
 
 </pre>
 The presentation proceeds through a series of modest programs to illustrate
index dc49b0387b562632229eb437eb3b7943f58fdc6d..201e945c4851d73519c1ee817b4d1e04ca8328c3 100644 (file)
@@ -1,22 +1,16 @@
 Let's Go
 ----
 
-Rob Pike
-
-----
-(March 18, 2009)
-
-
 This document is a tutorial introduction to the basics of the Go systems programming
 language, intended for programmers familiar with C or C++. It is not a comprehensive
 guide to the language; at the moment the document closest to that is the draft
 specification:
 
-       /doc/go_spec.html
+       http://go/go/doc/go_spec.html
 
 To check out the compiler and tools and be ready to run Go programs, see
 
-       /doc/go_setup.html
+       http://go/go/doc/go_setup.html
 
 The presentation proceeds through a series of modest programs to illustrate
 key features of the language.  All the programs work (at time of writing) and are