1
0
mirror of https://github.com/golang/go synced 2024-11-22 00:44:39 -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> <h1 id="Lets_Go">Let's Go</h1>
<p>
Rob Pike <!-- The Table of Contents is automatically inserted in this <div>.
<p> Do not delete this <div>. -->
<hr> <div id="nav"></div>
(March 18, 2009)
<p> <h2>Introduction</h2>
<p> <p>
This document is a tutorial introduction to the basics of the Go systems programming 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 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: specification:
<p> <p>
<pre> <pre>
/doc/go_spec.html http://go/go/doc/go_spec.html
</pre> </pre>
To check out the compiler and tools and be ready to run Go programs, see To check out the compiler and tools and be ready to run Go programs, see
<p> <p>
<pre> <pre>
/doc/go_setup.html http://go/go/doc/go_setup.html
</pre> </pre>
The presentation proceeds through a series of modest programs to illustrate The presentation proceeds through a series of modest programs to illustrate

View File

@ -1,22 +1,16 @@
Let's Go Let's Go
---- ----
Rob Pike
----
(March 18, 2009)
This document is a tutorial introduction to the basics of the Go systems programming 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 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 guide to the language; at the moment the document closest to that is the draft
specification: 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 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 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 key features of the language. All the programs work (at time of writing) and are