1
0
mirror of https://github.com/golang/go synced 2024-11-21 18:14:42 -07:00

process tutorial into new format

R=rsc
DELTA=161  (57 added, 56 deleted, 48 changed)
OCL=34926
CL=34929
This commit is contained in:
Rob Pike 2009-09-23 12:31:57 -07:00
parent 567673fc42
commit ea4ada89e1
3 changed files with 19 additions and 17 deletions

8
doc/go_tutorial.head Normal file
View File

@ -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>

View 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

View 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