From 2a63f5df987625fbcc69d0447efef0c49fd41941 Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Sun, 8 Nov 2009 01:08:26 -0800 Subject: [PATCH] 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 --- doc/go_for_cpp_programmers.html | 137 +++++++++++++++++++------------- 1 file changed, 82 insertions(+), 55 deletions(-) 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