Andrew Gerrand | 7cb21a7 | 2012-01-19 11:24:54 +1100 | [diff] [blame] | 1 | <!--{ |
Andrew Gerrand | 8bbe5cc | 2012-01-20 07:37:36 +1100 | [diff] [blame] | 2 | "Title": "Documentation", |
Andrew Bonventre | 98603e7 | 2017-08-29 16:23:49 -0400 | [diff] [blame] | 3 | "Path": "/doc/", |
| 4 | "Template": true |
Andrew Gerrand | 7cb21a7 | 2012-01-19 11:24:54 +1100 | [diff] [blame] | 5 | }--> |
Andrew Gerrand | 1ca99c8 | 2010-05-27 16:47:42 -0700 | [diff] [blame] | 6 | |
Andrew Gerrand | d84de09 | 2012-02-13 21:22:36 +1100 | [diff] [blame] | 7 | <p> |
| 8 | The Go programming language is an open source project to make programmers more |
| 9 | productive. |
| 10 | </p> |
| 11 | |
| 12 | <p> |
| 13 | Go is expressive, concise, clean, and efficient. Its concurrency |
| 14 | mechanisms make it easy to write programs that get the most out of multicore |
| 15 | and networked machines, while its novel type system enables flexible and |
| 16 | modular program construction. Go compiles quickly to machine code yet has the |
| 17 | convenience of garbage collection and the power of run-time reflection. It's a |
| 18 | fast, statically typed, compiled language that feels like a dynamically typed, |
| 19 | interpreted language. |
| 20 | </p> |
| 21 | |
| 22 | <div id="manual-nav"></div> |
Andrew Gerrand | 6ab8d24 | 2010-09-16 14:01:02 +1000 | [diff] [blame] | 23 | |
Andrew Gerrand | f78d50c | 2012-03-05 14:31:27 +1100 | [diff] [blame] | 24 | <h2>Installing Go</h2> |
| 25 | |
| 26 | <h3><a href="/doc/install">Getting Started</a></h3> |
| 27 | <p> |
| 28 | Instructions for downloading and installing the Go compilers, tools, and |
| 29 | libraries. |
| 30 | </p> |
| 31 | |
| 32 | |
Andrew Gerrand | 6ab8d24 | 2010-09-16 14:01:02 +1000 | [diff] [blame] | 33 | <h2 id="learning">Learning Go</h2> |
| 34 | |
Andrew Gerrand | f200b72 | 2012-03-06 12:50:52 +1100 | [diff] [blame] | 35 | <img class="gopher" src="/doc/gopher/doc.png"/> |
| 36 | |
Andrew Bonventre | 98603e7 | 2017-08-29 16:23:49 -0400 | [diff] [blame] | 37 | <h3 id="go_tour"> |
| 38 | {{if $.GoogleCN}} |
| 39 | A Tour of Go |
| 40 | {{else}} |
| 41 | <a href="//tour.golang.org/">A Tour of Go</a> |
| 42 | {{end}} |
| 43 | </h3> |
Andrew Gerrand | f03b37b | 2011-10-05 11:12:07 -0700 | [diff] [blame] | 44 | <p> |
| 45 | An interactive introduction to Go in three sections. |
| 46 | The first section covers basic syntax and data structures; the second discusses |
| 47 | methods and interfaces; and the third introduces Go's concurrency primitives. |
| 48 | Each section concludes with a few exercises so you can practice what you've |
Andrew Bonventre | 98603e7 | 2017-08-29 16:23:49 -0400 | [diff] [blame] | 49 | learned. You can {{if not $.GoogleCN}}<a href="//tour.golang.org/">take the tour |
| 50 | online</a> or{{end}} install it locally with: |
Edward Muller | 69e7e8a | 2016-08-30 19:14:46 -0700 | [diff] [blame] | 51 | </p> |
Edward Muller | 69e7e8a | 2016-08-30 19:14:46 -0700 | [diff] [blame] | 52 | <pre> |
| 53 | $ go get golang.org/x/tour/gotour |
| 54 | </pre> |
Ryuji Iwata | c52e26e | 2017-11-25 18:09:54 +0900 | [diff] [blame] | 55 | <p> |
Edward Muller | 69e7e8a | 2016-08-30 19:14:46 -0700 | [diff] [blame] | 56 | This will place the <code>gotour</code> binary in your workspace's <code>bin</code> directory. |
Andrew Gerrand | f03b37b | 2011-10-05 11:12:07 -0700 | [diff] [blame] | 57 | </p> |
| 58 | |
Andrew Gerrand | f78d50c | 2012-03-05 14:31:27 +1100 | [diff] [blame] | 59 | <h3 id="code"><a href="code.html">How to write Go code</a></h3> |
| 60 | <p> |
Andrew Bonventre | 98603e7 | 2017-08-29 16:23:49 -0400 | [diff] [blame] | 61 | {{if not $.GoogleCN}} |
| 62 | Also available as a <a href="//www.youtube.com/watch?v=XCsL89YtqCs">screencast</a>, this |
| 63 | {{else}} |
| 64 | This |
| 65 | {{end}} |
| 66 | doc explains how to use the <a href="/cmd/go/">go command</a> |
| 67 | to fetch, build, and install packages, commands, and run tests. |
Andrew Gerrand | f78d50c | 2012-03-05 14:31:27 +1100 | [diff] [blame] | 68 | </p> |
| 69 | |
Jaana Burcu Dogan | 77ee861 | 2017-06-14 12:41:14 -0700 | [diff] [blame] | 70 | <h3 id="editors"><a href="editors.html">Editor plugins and IDEs</a></h3> |
| 71 | <p> |
| 72 | A document that summarizes commonly used editor plugins and IDEs with |
| 73 | Go support. |
| 74 | </p> |
| 75 | |
Andrew Gerrand | 1ca99c8 | 2010-05-27 16:47:42 -0700 | [diff] [blame] | 76 | <h3 id="effective_go"><a href="effective_go.html">Effective Go</a></h3> |
| 77 | <p> |
| 78 | A document that gives tips for writing clear, idiomatic Go code. |
Rob Pike | 7201b0c | 2012-02-28 13:35:58 +1100 | [diff] [blame] | 79 | A must read for any new Go programmer. It augments the tour and |
Peter Mundy | abb0c09 | 2010-11-29 10:10:02 +0900 | [diff] [blame] | 80 | the language specification, both of which should be read first. |
Andrew Gerrand | 1ca99c8 | 2010-05-27 16:47:42 -0700 | [diff] [blame] | 81 | </p> |
| 82 | |
Jaana Burcu Dogan | 669dcca | 2017-09-05 13:15:56 -0700 | [diff] [blame] | 83 | <h3 id="diagnostics"><a href="/doc/diagnostics.html">Diagnostics</a></h3> |
| 84 | <p> |
| 85 | Summarizes tools and methodologies to diagnose problems in Go programs. |
| 86 | </p> |
| 87 | |
Andrew Gerrand | 5dd7417 | 2013-09-16 15:47:13 +1000 | [diff] [blame] | 88 | <h3 id="faq"><a href="/doc/faq">Frequently Asked Questions (FAQ)</a></h3> |
Andrew Gerrand | 1ca99c8 | 2010-05-27 16:47:42 -0700 | [diff] [blame] | 89 | <p> |
Andrew Gerrand | d84de09 | 2012-02-13 21:22:36 +1100 | [diff] [blame] | 90 | Answers to common questions about Go. |
Andrew Gerrand | 1ca99c8 | 2010-05-27 16:47:42 -0700 | [diff] [blame] | 91 | </p> |
| 92 | |
Andrew Gerrand | 5dd7417 | 2013-09-16 15:47:13 +1000 | [diff] [blame] | 93 | <h3 id="wiki"><a href="/wiki">The Go Wiki</a></h3> |
Andrew Gerrand | 539178b | 2012-03-05 15:07:43 +1100 | [diff] [blame] | 94 | <p>A wiki maintained by the Go community.</p> |
Andrew Gerrand | d84de09 | 2012-02-13 21:22:36 +1100 | [diff] [blame] | 95 | |
Andrew Gerrand | 5dd7417 | 2013-09-16 15:47:13 +1000 | [diff] [blame] | 96 | <h4 id="learn_more">More</h4> |
Andrew Gerrand | c9836be | 2012-03-08 16:10:55 +1100 | [diff] [blame] | 97 | <p> |
Andrew Gerrand | 5dd7417 | 2013-09-16 15:47:13 +1000 | [diff] [blame] | 98 | See the <a href="/wiki/Learn">Learn</a> page at the <a href="/wiki">Wiki</a> |
| 99 | for more Go learning resources. |
Andrew Gerrand | c9836be | 2012-03-08 16:10:55 +1100 | [diff] [blame] | 100 | </p> |
| 101 | |
Andrew Gerrand | 5dd7417 | 2013-09-16 15:47:13 +1000 | [diff] [blame] | 102 | |
| 103 | <h2 id="references">References</h2> |
| 104 | |
| 105 | <h3 id="pkg"><a href="/pkg/">Package Documentation</a></h3> |
Andrew Gerrand | 3bd0769 | 2013-05-01 10:00:05 -0400 | [diff] [blame] | 106 | <p> |
Andrew Gerrand | 5dd7417 | 2013-09-16 15:47:13 +1000 | [diff] [blame] | 107 | The documentation for the Go standard library. |
Andrew Gerrand | 3bd0769 | 2013-05-01 10:00:05 -0400 | [diff] [blame] | 108 | </p> |
| 109 | |
Andrew Gerrand | 5dd7417 | 2013-09-16 15:47:13 +1000 | [diff] [blame] | 110 | <h3 id="cmd"><a href="/doc/cmd">Command Documentation</a></h3> |
Rob Pike | a97a7c5 | 2013-09-12 09:08:59 +1000 | [diff] [blame] | 111 | <p> |
Andrew Gerrand | 5dd7417 | 2013-09-16 15:47:13 +1000 | [diff] [blame] | 112 | The documentation for the Go tools. |
Rob Pike | a97a7c5 | 2013-09-12 09:08:59 +1000 | [diff] [blame] | 113 | </p> |
| 114 | |
Andrew Gerrand | 48ba6fe | 2013-10-04 09:45:06 +1000 | [diff] [blame] | 115 | <h3 id="spec"><a href="/ref/spec">Language Specification</a></h3> |
Andrew Gerrand | c9836be | 2012-03-08 16:10:55 +1100 | [diff] [blame] | 116 | <p> |
Andrew Gerrand | 5dd7417 | 2013-09-16 15:47:13 +1000 | [diff] [blame] | 117 | The official Go Language specification. |
Andrew Gerrand | c9836be | 2012-03-08 16:10:55 +1100 | [diff] [blame] | 118 | </p> |
| 119 | |
Andrew Gerrand | 48ba6fe | 2013-10-04 09:45:06 +1000 | [diff] [blame] | 120 | <h3 id="go_mem"><a href="/ref/mem">The Go Memory Model</a></h3> |
Andrew Gerrand | 5dd7417 | 2013-09-16 15:47:13 +1000 | [diff] [blame] | 121 | <p> |
| 122 | A document that specifies the conditions under which reads of a variable in |
| 123 | one goroutine can be guaranteed to observe values produced by writes to the |
| 124 | same variable in a different goroutine. |
| 125 | </p> |
| 126 | |
Andrew Gerrand | d131ffe | 2014-06-12 13:31:13 +1000 | [diff] [blame] | 127 | <h3 id="release"><a href="/doc/devel/release.html">Release History</a></h3> |
| 128 | <p>A summary of the changes between Go releases.</p> |
| 129 | |
Andrew Gerrand | 5dd7417 | 2013-09-16 15:47:13 +1000 | [diff] [blame] | 130 | |
| 131 | <h2 id="articles">Articles</h2> |
Andrew Gerrand | d84de09 | 2012-02-13 21:22:36 +1100 | [diff] [blame] | 132 | |
Andrew Bonventre | 98603e7 | 2017-08-29 16:23:49 -0400 | [diff] [blame] | 133 | {{if not $.GoogleCN}} |
Andrew Gerrand | 43ad89d | 2014-07-25 10:28:39 +1000 | [diff] [blame] | 134 | <h3 id="blog"><a href="//blog.golang.org/">The Go Blog</a></h3> |
Andrew Gerrand | f78d50c | 2012-03-05 14:31:27 +1100 | [diff] [blame] | 135 | <p>The official blog of the Go project, featuring news and in-depth articles by |
| 136 | the Go team and guests.</p> |
Andrew Bonventre | 98603e7 | 2017-08-29 16:23:49 -0400 | [diff] [blame] | 137 | {{end}} |
Andrew Gerrand | f78d50c | 2012-03-05 14:31:27 +1100 | [diff] [blame] | 138 | |
Andrew Gerrand | e8636a6 | 2012-03-13 11:00:11 +1100 | [diff] [blame] | 139 | <h4>Codewalks</h4> |
Yves Junqueira | de3a397 | 2010-11-23 10:43:16 +1100 | [diff] [blame] | 140 | <p> |
Francisco Souza | a786fe8 | 2012-03-27 13:35:40 +1100 | [diff] [blame] | 141 | Guided tours of Go programs. |
Yves Junqueira | de3a397 | 2010-11-23 10:43:16 +1100 | [diff] [blame] | 142 | </p> |
Andrew Gerrand | 3bc2d0f | 2011-09-10 09:35:25 +1000 | [diff] [blame] | 143 | <ul> |
| 144 | <li><a href="/doc/codewalk/functions">First-Class Functions in Go</a></li> |
| 145 | <li><a href="/doc/codewalk/markov">Generating arbitrary text: a Markov chain algorithm</a></li> |
| 146 | <li><a href="/doc/codewalk/sharemem">Share Memory by Communicating</a></li> |
Andrew Gerrand | f78d50c | 2012-03-05 14:31:27 +1100 | [diff] [blame] | 147 | <li><a href="/doc/articles/wiki/">Writing Web Applications</a> - building a simple web application.</li> |
Andrew Gerrand | 3bc2d0f | 2011-09-10 09:35:25 +1000 | [diff] [blame] | 148 | </ul> |
Yves Junqueira | de3a397 | 2010-11-23 10:43:16 +1100 | [diff] [blame] | 149 | |
Andrew Bonventre | 98603e7 | 2017-08-29 16:23:49 -0400 | [diff] [blame] | 150 | {{if not $.GoogleCN}} |
Andrew Gerrand | e8636a6 | 2012-03-13 11:00:11 +1100 | [diff] [blame] | 151 | <h4>Language</h4> |
Andrew Gerrand | 3bc2d0f | 2011-09-10 09:35:25 +1000 | [diff] [blame] | 152 | <ul> |
Andrew Gerrand | 5dd7417 | 2013-09-16 15:47:13 +1000 | [diff] [blame] | 153 | <li><a href="/blog/json-rpc-tale-of-interfaces">JSON-RPC: a tale of interfaces</a></li> |
| 154 | <li><a href="/blog/gos-declaration-syntax">Go's Declaration Syntax</a></li> |
| 155 | <li><a href="/blog/defer-panic-and-recover">Defer, Panic, and Recover</a></li> |
| 156 | <li><a href="/blog/go-concurrency-patterns-timing-out-and">Go Concurrency Patterns: Timing out, moving on</a></li> |
| 157 | <li><a href="/blog/go-slices-usage-and-internals">Go Slices: usage and internals</a></li> |
| 158 | <li><a href="/blog/gif-decoder-exercise-in-go-interfaces">A GIF decoder: an exercise in Go interfaces</a></li> |
| 159 | <li><a href="/blog/error-handling-and-go">Error Handling and Go</a></li> |
| 160 | <li><a href="/blog/organizing-go-code">Organizing Go code</a></li> |
Andrew Gerrand | 3bc2d0f | 2011-09-10 09:35:25 +1000 | [diff] [blame] | 161 | </ul> |
| 162 | |
Andrew Gerrand | e8636a6 | 2012-03-13 11:00:11 +1100 | [diff] [blame] | 163 | <h4>Packages</h4> |
Andrew Gerrand | 3bc2d0f | 2011-09-10 09:35:25 +1000 | [diff] [blame] | 164 | <ul> |
Andrew Gerrand | 5dd7417 | 2013-09-16 15:47:13 +1000 | [diff] [blame] | 165 | <li><a href="/blog/json-and-go">JSON and Go</a> - using the <a href="/pkg/encoding/json/">json</a> package.</li> |
| 166 | <li><a href="/blog/gobs-of-data">Gobs of data</a> - the design and use of the <a href="/pkg/encoding/gob/">gob</a> package.</li> |
| 167 | <li><a href="/blog/laws-of-reflection">The Laws of Reflection</a> - the fundamentals of the <a href="/pkg/reflect/">reflect</a> package.</li> |
| 168 | <li><a href="/blog/go-image-package">The Go image package</a> - the fundamentals of the <a href="/pkg/image/">image</a> package.</li> |
| 169 | <li><a href="/blog/go-imagedraw-package">The Go image/draw package</a> - the fundamentals of the <a href="/pkg/image/draw/">image/draw</a> package.</li> |
Andrew Gerrand | 3bc2d0f | 2011-09-10 09:35:25 +1000 | [diff] [blame] | 170 | </ul> |
Andrew Bonventre | 98603e7 | 2017-08-29 16:23:49 -0400 | [diff] [blame] | 171 | {{end}} |
Andrew Gerrand | 3bc2d0f | 2011-09-10 09:35:25 +1000 | [diff] [blame] | 172 | |
Andrew Gerrand | e8636a6 | 2012-03-13 11:00:11 +1100 | [diff] [blame] | 173 | <h4>Tools</h4> |
Andrew Gerrand | 3bc2d0f | 2011-09-10 09:35:25 +1000 | [diff] [blame] | 174 | <ul> |
Andrew Gerrand | 73b8ccb | 2012-03-07 07:40:21 +1100 | [diff] [blame] | 175 | <li><a href="/doc/articles/go_command.html">About the Go command</a> - why we wrote it, what it is, what it's not, and how to use it.</li> |
Andrew Gerrand | 98155bd | 2012-03-27 11:42:01 +1100 | [diff] [blame] | 176 | <li><a href="/doc/gdb">Debugging Go Code with GDB</a></li> |
Andrew Bonventre | 98603e7 | 2017-08-29 16:23:49 -0400 | [diff] [blame] | 177 | <li><a href="/doc/articles/race_detector.html">Data Race Detector</a> - a manual for the data race detector.</li> |
| 178 | <li><a href="/doc/asm">A Quick Guide to Go's Assembler</a> - an introduction to the assembler used by Go.</li> |
| 179 | {{if not $.GoogleCN}} |
| 180 | <li><a href="/blog/c-go-cgo">C? Go? Cgo!</a> - linking against C code with <a href="/cmd/cgo/">cgo</a>.</li> |
Andrew Gerrand | 5dd7417 | 2013-09-16 15:47:13 +1000 | [diff] [blame] | 181 | <li><a href="/blog/godoc-documenting-go-code">Godoc: documenting Go code</a> - writing good documentation for <a href="/cmd/godoc/">godoc</a>.</li> |
| 182 | <li><a href="/blog/profiling-go-programs">Profiling Go Programs</a></li> |
Robin Eklind | 8e902dd | 2014-07-09 14:26:37 -0700 | [diff] [blame] | 183 | <li><a href="/blog/race-detector">Introducing the Go Race Detector</a> - an introduction to the race detector.</li> |
Andrew Bonventre | 98603e7 | 2017-08-29 16:23:49 -0400 | [diff] [blame] | 184 | {{end}} |
Andrew Gerrand | 3bc2d0f | 2011-09-10 09:35:25 +1000 | [diff] [blame] | 185 | </ul> |
| 186 | |
Andrew Gerrand | 5dd7417 | 2013-09-16 15:47:13 +1000 | [diff] [blame] | 187 | <h4 id="articles_more">More</h4> |
| 188 | <p> |
| 189 | See the <a href="/wiki/Articles">Articles page</a> at the |
| 190 | <a href="/wiki">Wiki</a> for more Go articles. |
| 191 | </p> |
| 192 | |
Andrew Bonventre | 98603e7 | 2017-08-29 16:23:49 -0400 | [diff] [blame] | 193 | {{if not $.GoogleCN}} |
Andrew Gerrand | f78d50c | 2012-03-05 14:31:27 +1100 | [diff] [blame] | 194 | <h2 id="talks">Talks</h2> |
Andrew Gerrand | bab711b | 2010-07-30 10:36:13 +1000 | [diff] [blame] | 195 | |
Andrew Gerrand | f200b72 | 2012-03-06 12:50:52 +1100 | [diff] [blame] | 196 | <img class="gopher" src="/doc/gopher/talks.png"/> |
| 197 | |
Andrew Gerrand | 0bc952c | 2012-08-09 08:50:13 +1000 | [diff] [blame] | 198 | <h3 id="video_tour_of_go"><a href="http://research.swtch.com/gotour">A Video Tour of Go</a></h3> |
| 199 | <p> |
| 200 | Three things that make Go fast, fun, and productive: |
| 201 | interfaces, reflection, and concurrency. Builds a toy web crawler to |
| 202 | demonstrate these. |
| 203 | </p> |
| 204 | |
Andrew Gerrand | 43ad89d | 2014-07-25 10:28:39 +1000 | [diff] [blame] | 205 | <h3 id="go_code_that_grows"><a href="//vimeo.com/53221560">Code that grows with grace</a></h3> |
Andrew Gerrand | 5dd7417 | 2013-09-16 15:47:13 +1000 | [diff] [blame] | 206 | <p> |
| 207 | One of Go's key design goals is code adaptability; that it should be easy to take a simple design and build upon it in a clean and natural way. In this talk Andrew Gerrand describes a simple "chat roulette" server that matches pairs of incoming TCP connections, and then use Go's concurrency mechanisms, interfaces, and standard library to extend it with a web interface and other features. While the function of the program changes dramatically, Go's flexibility preserves the original design as it grows. |
| 208 | </p> |
| 209 | |
Andrew Gerrand | 43ad89d | 2014-07-25 10:28:39 +1000 | [diff] [blame] | 210 | <h3 id="go_concurrency_patterns"><a href="//www.youtube.com/watch?v=f6kdp27TYZs">Go Concurrency Patterns</a></h3> |
Andrew Gerrand | 4087c1b | 2012-07-22 16:35:53 -0700 | [diff] [blame] | 211 | <p> |
| 212 | Concurrency is the key to designing high performance network services. Go's concurrency primitives (goroutines and channels) provide a simple and efficient means of expressing concurrent execution. In this talk we see how tricky concurrency problems can be solved gracefully with simple Go code. |
| 213 | </p> |
| 214 | |
Andrew Gerrand | 43ad89d | 2014-07-25 10:28:39 +1000 | [diff] [blame] | 215 | <h3 id="advanced_go_concurrency_patterns"><a href="//www.youtube.com/watch?v=QDDwwePbDtw">Advanced Go Concurrency Patterns</a></h3> |
Andrew Gerrand | 4087c1b | 2012-07-22 16:35:53 -0700 | [diff] [blame] | 216 | <p> |
Andrew Gerrand | 5dd7417 | 2013-09-16 15:47:13 +1000 | [diff] [blame] | 217 | This talk expands on the <i>Go Concurrency Patterns</i> talk to dive deeper into Go's concurrency primitives. |
Andrew Gerrand | bab711b | 2010-07-30 10:36:13 +1000 | [diff] [blame] | 218 | </p> |
Andrew Gerrand | 1ca99c8 | 2010-05-27 16:47:42 -0700 | [diff] [blame] | 219 | |
Andrew Gerrand | e8636a6 | 2012-03-13 11:00:11 +1100 | [diff] [blame] | 220 | <h4 id="talks_more">More</h4> |
Andrew Gerrand | 1ca99c8 | 2010-05-27 16:47:42 -0700 | [diff] [blame] | 221 | <p> |
Andrew Gerrand | 5dd7417 | 2013-09-16 15:47:13 +1000 | [diff] [blame] | 222 | See the <a href="/talks">Go Talks site</a> and <a href="/wiki/GoTalks">wiki page</a> for more Go talks. |
Andrew Gerrand | 1ca99c8 | 2010-05-27 16:47:42 -0700 | [diff] [blame] | 223 | </p> |
Andrew Bonventre | 98603e7 | 2017-08-29 16:23:49 -0400 | [diff] [blame] | 224 | {{end}} |
Andrew Gerrand | 5dd7417 | 2013-09-16 15:47:13 +1000 | [diff] [blame] | 225 | |
Andrew Gerrand | f78d50c | 2012-03-05 14:31:27 +1100 | [diff] [blame] | 226 | <h2 id="nonenglish">Non-English Documentation</h2> |
| 227 | |
Andrew Gerrand | 1748dc3 | 2010-10-14 17:25:23 +1100 | [diff] [blame] | 228 | <p> |
Andrew Gerrand | 5dd7417 | 2013-09-16 15:47:13 +1000 | [diff] [blame] | 229 | See the <a href="/wiki/NonEnglish">NonEnglish</a> page |
| 230 | at the <a href="/wiki">Wiki</a> for localized |
Andrew Gerrand | f78d50c | 2012-03-05 14:31:27 +1100 | [diff] [blame] | 231 | documentation. |
Andrew Gerrand | 1748dc3 | 2010-10-14 17:25:23 +1100 | [diff] [blame] | 232 | </p> |