From: Russ Cox Date: Sun, 8 Nov 2009 09:08:26 +0000 (-0800) Subject: go for c++ programmers; fixes. X-Git-Tag: weekly.2009-11-10~53 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=2a63f5df987625fbcc69d0447efef0c49fd41941;p=gostls13.git go for c++ programmers; fixes. the most substantial are the wording around semicolons and around the channel manager nits. both were subtly incorrect. R=iant, r CC=go-dev http://go/go-review/1025018 --- diff --git a/doc/go_for_cpp_programmers.html b/doc/go_for_cpp_programmers.html index b6990c3625..9920e016b0 100644 --- a/doc/go_for_cpp_programmers.html +++ b/doc/go_for_cpp_programmers.html @@ -1,7 +1,8 @@

-Go is a systems programming language intended as an alternative to C++. +Go is a systems programming language intended to be a general-purpose +systems language, like C++. These are some notes on Go for experienced C++ programmers. This document discusses the differences between Go and C++, and says little to nothing about the similarities. @@ -15,9 +16,6 @@ For a more general introduction to Go, see the For a detailed description of the Go language, see the Go spec. -

-There is more documentation about go. -

Conceptual Differences