From f3bb4d91ab353036ca92b3a4614974bb9b773ffb Mon Sep 17 00:00:00 2001 From: Rob Pike Date: Thu, 5 Nov 2009 13:39:00 -0800 Subject: update the text on the landing page. R=agl, rsc CC=go-dev http://go/go-review/1017053 --- doc/root.html | 41 ++++++++++++++++++++++++++--------------- 1 file changed, 26 insertions(+), 15 deletions(-) (limited to 'doc') diff --git a/doc/root.html b/doc/root.html index b727f7f8a..e7c343e57 100644 --- a/doc/root.html +++ b/doc/root.html @@ -24,12 +24,14 @@ -

Watch and Learn

+

Slow compiles?
Watch this.

+ + @@ -45,7 +47,7 @@
Programming with Go. Watch now. -
an experimental programming language.
Imperative, concurrent, garbage-collected.
+
a systems programming language
Expressive, concurrent, garbage-collected
@@ -59,29 +61,38 @@ package main import "fmt" func main() { - fmt.Printf("Hello, 世界\n"); + fmt.Printf("Hello, 世界\n") }

… fast

-

Go generates fast code and, equally importantly, does it fast. It takes too long to build software. The tools are slow and are getting slower. Dependencies are uncontrolled. Machines have stopped getting faster. Yet software still grows and grows. If we stay as we are, before long software construction will be unbearably slow.

+

+Go compilers produce fast code fast. Typical builds take a fraction of a second yet the resulting programs run nearly as quickly as comparable C or C++ code. +

… safe

-

Go is type safe and memory safe. Go has pointers, but you can't perform -arithmetic on them. If you want that, you use slices, which known their -limits.

- -

Clumsy type systems drive people to dynamically typed languages. Go is -object orientated without type hierarchies. Casts are checked at runtime and -types can be reflected upon.

+

Go is type safe and memory safe. Go has pointers but no pointer arithmetic. +For random access, use slices, which know their limits.

… concurrent

-

Go provides a way to write systems and servers as concurrent, -garbage-collected processes (goroutines) with support from the language and -run-time. Growing stacks and multiplexing of goroutines onto threads is done -automatically.

+

+Go promotes writing systems and servers as sets of lightweight +communicating processes, called goroutines, with strong support from the language. +Run thousands of goroutines if you want—and say good-bye to stack overflows. +

+ +

… fun

+ +

+Go has fast builds, clean syntax, garbage collection, +methods for any type, and run-time reflection. +It feels like a dynamic language but has the speed and safety of a static language. +It's a joy to use. +

+ +

-- cgit v1.2.3