mirror of
https://github.com/golang/go
synced 2024-11-12 08:00:22 -07:00
7190fdd3bf
add Blog and Wiki links to sideba R=r, rsc, gri CC=golang-dev https://golang.org/cl/611042
119 lines
3.1 KiB
HTML
119 lines
3.1 KiB
HTML
<!-- The Go Programming Language -->
|
|
|
|
<script>
|
|
// On the frontpage we hide the header and navigation elements that other
|
|
// pages have.
|
|
document.getElementById('generatedHeader').style.display = 'none';
|
|
document.getElementById('nav').style.display = 'none';
|
|
</script>
|
|
|
|
<!-- begin blog post widget JS/styles -->
|
|
<script src="http://www.google.com/jsapi/?key=ABQIAAAA4TEcjQ5y1r35xLDoRydN_RQJvypqxg_hbbvOIUrMXndwfI6kkBStplaG-3V8WLePPIt0A4nJSKKJdA" type="text/javascript"></script>
|
|
<script src="http://www.google.com/uds/solutions/dynamicfeed/gfdynamicfeedcontrol.js" type="text/javascript"></script>
|
|
<script type="text/javascript">
|
|
function loadFeedControl() {
|
|
var feed = "http://blog.golang.org/feeds/posts/default"
|
|
var fg = new GFdynamicFeedControl(feed, "feedControl", {
|
|
numResults: 5,
|
|
displayTime: 5000
|
|
});
|
|
}
|
|
google.load("feeds", "1");
|
|
google.setOnLoadCallback(loadFeedControl);
|
|
</script>
|
|
<!-- end blog post widget JS/styles -->
|
|
|
|
<div id="gettingStarted">
|
|
<h1>Getting started</h1>
|
|
|
|
<ol>
|
|
<li>
|
|
<span><a href="/doc/install.html">Install Go</a>.</span>
|
|
</li>
|
|
|
|
<li>
|
|
<span>Read the <a href="/doc/go_tutorial.html">tutorial</a>.</span>
|
|
</li>
|
|
|
|
<li>
|
|
<span>Learn the <a href="/pkg">libraries</a>.</span>
|
|
</li>
|
|
</ol>
|
|
|
|
<h1>Slow compiles?<br>Watch this</h1>
|
|
<table width="100%">
|
|
<tr>
|
|
<td align=center width="100%">
|
|
<a href="http://www.youtube.com/watch?v=wwoWei-GAPo"><img src="/doc/video-snap.jpg"></a>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
|
|
<div id="blog">
|
|
<h1>From the <a href="http://blog.golang.org">Go Blog</a>:</h1>
|
|
<div id="feedControl">Loading...</div>
|
|
</div>
|
|
|
|
|
|
<div id="frontpage">
|
|
|
|
<table style="padding-top: 1em; padding-bottom: 2em;">
|
|
<tr>
|
|
<td>
|
|
<img style="padding-right: 1em;" src="/doc/go-logo-black.png">
|
|
</td>
|
|
<td>
|
|
<div><span style="font-size: 2em; font-weight: bold;">a systems programming language</span><br><span style="font-size: 1.5em;">expressive, concurrent, garbage-collected</span></div>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<p style="font-size: 1.5em; font-weight: bold;">Go is …</p>
|
|
|
|
<h3>… simple</h3>
|
|
<pre class="code">
|
|
package main
|
|
|
|
import "fmt"
|
|
|
|
func main() {
|
|
fmt.Printf("Hello, 世界\n")
|
|
}</pre>
|
|
|
|
<h3>… fast</h3>
|
|
|
|
<p>
|
|
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.
|
|
</p>
|
|
|
|
<h3>… safe</h3>
|
|
|
|
<p>Go is type safe and memory safe. Go has pointers but no pointer arithmetic.
|
|
For random access, use slices, which know their limits.</p>
|
|
|
|
<h3>… concurrent</h3>
|
|
|
|
<p>
|
|
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.
|
|
</p>
|
|
|
|
<h3>… fun</h3>
|
|
|
|
<p>
|
|
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.
|
|
</p>
|
|
|
|
<h3>… open source</h3>
|
|
|
|
<p>
|
|
<a href="/doc/install.html">Go for it</a>.
|
|
</p>
|
|
|
|
</div>
|