Rob Pike | 09e1da3 | 2014-03-26 13:56:16 +1100 | [diff] [blame] | 1 | <!--{ |
| 2 | "Title": "Go 1.3 Release Notes", |
| 3 | "Path": "/doc/go1.3", |
| 4 | "Template": true |
| 5 | }--> |
| 6 | |
| 7 | <h2 id="introduction">Introduction to Go 1.3</h2> |
| 8 | |
| 9 | <p> |
| 10 | The latest Go release, version 1.3, arrives six months after 1.2, |
| 11 | and contains no language changes. |
Rob Pike | c5f14c5 | 2014-04-09 08:19:35 +1000 | [diff] [blame] | 12 | It focuses primarily on implementation work, providing |
Rob Pike | 09e1da3 | 2014-03-26 13:56:16 +1100 | [diff] [blame] | 13 | precise garbage collection, |
Rob Pike | c5f14c5 | 2014-04-09 08:19:35 +1000 | [diff] [blame] | 14 | a major refactoring of the compiler tool chain that results in |
| 15 | faster builds, especially for large projects, |
Rob Pike | 78025fb | 2014-04-08 14:07:17 +1000 | [diff] [blame] | 16 | significant performance improvements across the board, |
Rob Pike | c5f14c5 | 2014-04-09 08:19:35 +1000 | [diff] [blame] | 17 | and support for Solaris and Google's Native Client architecture (NaCl). |
| 18 | It also has an important refinement to the memory model regarding synchronization. |
Rob Pike | 09e1da3 | 2014-03-26 13:56:16 +1100 | [diff] [blame] | 19 | As always, Go 1.3 keeps the <a href="/doc/go1compat.html">promise |
| 20 | of compatibility</a>, |
| 21 | and almost everything |
| 22 | will continue to compile and run without change when moved to 1.3. |
| 23 | </p> |
| 24 | |
| 25 | <h2 id="os">Changes to the supported operating systems and architectures</h2> |
| 26 | |
| 27 | <h3 id="nacl">Support for Native Client</h3> |
Rob Pike | b69238b | 2014-04-09 12:47:35 +1000 | [diff] [blame] | 28 | |
Rob Pike | 09e1da3 | 2014-03-26 13:56:16 +1100 | [diff] [blame] | 29 | <p> |
Rob Pike | b69238b | 2014-04-09 12:47:35 +1000 | [diff] [blame] | 30 | Support for the Native Client virtual machine architecture has returned to Go with the 1.3 release. |
| 31 | It runs on the 32-bit Intel architectures (<code>GOARCH=386</code>) and also on 64-bit Intel, but using |
| 32 | 32-bit pointers (<code>GOARCH=amd64p32</code>). |
| 33 | There is not yet support for Native Client on ARM. |
| 34 | Note that this is Native Client (NaCl), not Portable Native Client (PNaCl). |
| 35 | Details about Native Client are <a href="https://developers.google.com/native-client/dev/">here</a>; |
| 36 | how to set up the Go version is described <a href="http://golang.org/wiki/NativeClient">here</a>. |
Rob Pike | 09e1da3 | 2014-03-26 13:56:16 +1100 | [diff] [blame] | 37 | </p> |
| 38 | |
| 39 | <h3 id="solaris">Support for Solaris</h3> |
| 40 | |
| 41 | <p> |
Russ Cox | c9133e3 | 2014-04-09 10:08:35 -0400 | [diff] [blame] | 42 | Go 1.3 now includes experimental support for Solaris on the <code>amd64</code> (64-bit x86) architecture. |
Rob Pike | 09e1da3 | 2014-03-26 13:56:16 +1100 | [diff] [blame] | 43 | </p> |
| 44 | |
| 45 | |
Rob Pike | c5f14c5 | 2014-04-09 08:19:35 +1000 | [diff] [blame] | 46 | <h3 id="win2000">Removal of support for Windows 2000</h3> |
Rob Pike | 09e1da3 | 2014-03-26 13:56:16 +1100 | [diff] [blame] | 47 | |
| 48 | <p> |
Rob Pike | 78025fb | 2014-04-08 14:07:17 +1000 | [diff] [blame] | 49 | Microsoft stopped supporting Windows 2000 in 2010. |
| 50 | Since it has <a href="https://codereview.appspot.com/74790043">implementation difficulties</a> |
| 51 | regarding exception handling (signals in Unix terminology), |
| 52 | as of Go 1.3 it is not supported by Go either. |
Rob Pike | 09e1da3 | 2014-03-26 13:56:16 +1100 | [diff] [blame] | 53 | </p> |
| 54 | |
| 55 | |
| 56 | <h2 id="memory">Changes to the memory model</h2> |
| 57 | |
| 58 | <p> |
Rob Pike | a438092 | 2014-03-27 11:45:51 +1100 | [diff] [blame] | 59 | The Go 1.3 memory model <a href="https://codereview.appspot.com/75130045">adds a new rule</a> |
| 60 | concerning sending and receiving on buffered channels, |
| 61 | to make explicit that a buffered channel can be used as a simple |
| 62 | semaphore, using a send into the |
| 63 | channel to acquire and a receive from the channel to release. |
| 64 | This is not a language change, just a clarification about an expected property of communication. |
Rob Pike | 09e1da3 | 2014-03-26 13:56:16 +1100 | [diff] [blame] | 65 | </p> |
| 66 | |
| 67 | <h2 id="impl">Changes to the implementations and tools</h2> |
| 68 | |
| 69 | <h3 id="stacks">Stack</h3> |
| 70 | |
| 71 | <p> |
Rob Pike | 610f395 | 2014-03-28 12:55:37 +1100 | [diff] [blame] | 72 | Go 1.3 has changed the implementation of goroutine stacks away from the old, |
| 73 | "segmented" model to a contiguous model. |
| 74 | When a goroutine needs more stack |
| 75 | than is available, its stack is transferred to a larger single block of memory. |
| 76 | The overhead of this transfer operation amortizes well and eliminates the old "hot spot" |
| 77 | problem when a calculation repeatedly steps across a segment boundary. |
| 78 | Details including performance numbers are in this |
| 79 | <a href="http://golang.org/s/contigstacks">design document</a>. |
Rob Pike | 09e1da3 | 2014-03-26 13:56:16 +1100 | [diff] [blame] | 80 | </p> |
| 81 | |
| 82 | <h3 id="stack_size">Stack size</h3> |
| 83 | |
| 84 | <p> |
| 85 | Go 1.2 increased the minimum stack size to 8 kilobytes; with the new stack model, it has been |
| 86 | put back to 4 kilobytes. |
| 87 | </p> |
| 88 | |
Rob Pike | 09e1da3 | 2014-03-26 13:56:16 +1100 | [diff] [blame] | 89 | <h3 id="garbage_collector">Changes to the garbage collector</h3> |
| 90 | |
| 91 | <p> |
Rob Pike | b69238b | 2014-04-09 12:47:35 +1000 | [diff] [blame] | 92 | For a while now, the garbage collector has been <em>precise</em> when examining |
| 93 | values in the heap; the Go 1.3 release adds equivalent precision to values on the stack. |
| 94 | This means that a non-pointer Go value such as an integer will never be mistaken for a |
| 95 | pointer and prevent unused memory from being reclaimed. |
Rob Pike | 09e1da3 | 2014-03-26 13:56:16 +1100 | [diff] [blame] | 96 | </p> |
| 97 | |
| 98 | <h3 id="liblink">The linker</h3> |
| 99 | |
| 100 | <p> |
Rob Pike | c5f14c5 | 2014-04-09 08:19:35 +1000 | [diff] [blame] | 101 | As part of the general <a href="http://golang.org/s/go13linker">overhaul</a> to |
| 102 | the Go linker, the compilers and linkers have been refactored. |
| 103 | The linker is still a C program, but now the instruction selection phase that |
| 104 | was part of the linker has been moved to the compiler through the creation of a new |
| 105 | library called <code>liblink</code>. |
| 106 | By doing instruction selection only once, when the package is first compiled, |
| 107 | this can speed up compilation of large projects significantly. |
Rob Pike | 09e1da3 | 2014-03-26 13:56:16 +1100 | [diff] [blame] | 108 | </p> |
| 109 | |
| 110 | <p> |
Rob Pike | c5f14c5 | 2014-04-09 08:19:35 +1000 | [diff] [blame] | 111 | <em>Updating</em>: Although this is a major internal change, it should have no |
| 112 | effect on programs. |
Rob Pike | 09e1da3 | 2014-03-26 13:56:16 +1100 | [diff] [blame] | 113 | </p> |
| 114 | |
| 115 | <h3 id="gccgo">Status of gccgo</h3> |
| 116 | |
| 117 | <p> |
Rob Pike | 96775a3 | 2014-04-09 09:45:39 +1000 | [diff] [blame] | 118 | GCC release 4.9 will contain the Go 1.2 (not 1.3) version of gccgo. |
| 119 | The release schedules for the GCC and Go projects do not coincide, |
| 120 | which means that 1.3 will be available in the development branch but |
| 121 | that the next GCC release, 4.10, will likely have the Go 1.4 version of gccgo. |
Rob Pike | 09e1da3 | 2014-03-26 13:56:16 +1100 | [diff] [blame] | 122 | </p> |
| 123 | |
| 124 | <h3 id="gocmd">Changes to the go command</h3> |
| 125 | |
| 126 | <p> |
Rob Pike | 56294f4 | 2014-04-09 15:20:00 +1000 | [diff] [blame] | 127 | The <a href="/cmd/go/"><code>cmd/go</code></a> command has several new |
| 128 | features. |
| 129 | The <a href="/cmd/go/"><code>go run</code></a> and |
| 130 | <a href="/cmd/go/"><code>go test</code></a> subcommands |
| 131 | support a new <code>-exec</code> option to specify an alternate |
| 132 | way to run the resulting binary. |
| 133 | Its immediate purpose is to support NaCl. |
| 134 | </p> |
| 135 | |
| 136 | <p> |
| 137 | The test coverage support of the <a href="/cmd/go/"><code>go test</code></a> |
| 138 | subcommand now automatically sets the coverage mode to <code>-atomic</code> |
| 139 | when the race detector is enabled, to eliminate false reports about unsafe |
| 140 | access to coverage counters. |
| 141 | </p> |
| 142 | |
| 143 | <p> |
| 144 | Finally, the go command now supports packages that import Objective-C |
| 145 | files (suffixed <code>.m</code>) through cgo. |
Rob Pike | 09e1da3 | 2014-03-26 13:56:16 +1100 | [diff] [blame] | 146 | </p> |
| 147 | |
| 148 | <h3 id="misc">Miscellany</h3> |
| 149 | |
Rob Pike | c5f14c5 | 2014-04-09 08:19:35 +1000 | [diff] [blame] | 150 | <p> |
| 151 | The program <code>misc/benchcmp</code> that compares |
| 152 | performance across benchmarking runs has been rewritten. |
| 153 | Once a shell and awk script in the main repository, it is now a Go program in the <code>go.tools</code> repo. |
| 154 | Documentation is <a href="http://godoc.org/code.google.com/p/go.tools/cmd/benchcmp">here</a>. |
| 155 | </p> |
| 156 | |
Rob Pike | 56294f4 | 2014-04-09 15:20:00 +1000 | [diff] [blame] | 157 | <p> |
Rob Pike | c5f14c5 | 2014-04-09 08:19:35 +1000 | [diff] [blame] | 158 | For the few of us that build Go distributions, the tool <code>misc/dist</code> has been |
| 159 | moved and renamed; it now lives in <code>misc/makerelease</code>, still in the main repository. |
Rob Pike | 56294f4 | 2014-04-09 15:20:00 +1000 | [diff] [blame] | 160 | </p> |
Rob Pike | 09e1da3 | 2014-03-26 13:56:16 +1100 | [diff] [blame] | 161 | |
| 162 | |
| 163 | <h2 id="performance">Performance</h2> |
| 164 | |
| 165 | <p> |
Rob Pike | 969dc76 | 2014-04-09 07:12:20 +1000 | [diff] [blame] | 166 | The performance of Go binaries for this release has improved in many cases due to changes |
| 167 | in the runtime and garbage collection, plus some changes to libraries. |
| 168 | Significant instances include: |
Rob Pike | 09e1da3 | 2014-03-26 13:56:16 +1100 | [diff] [blame] | 169 | </p> |
| 170 | |
| 171 | <ul> |
| 172 | |
| 173 | <li> |
Rob Pike | 969dc76 | 2014-04-09 07:12:20 +1000 | [diff] [blame] | 174 | As mentioned above, the default stack size has been reduced from 8 kilobytes to 4 kilobytes. |
| 175 | </li> |
| 176 | |
| 177 | <li> |
| 178 | The runtime handles defers more efficiently, reducing the memory footprint by about two kilobytes |
| 179 | per goroutine that calls defer. |
| 180 | </li> |
| 181 | |
| 182 | <li> |
| 183 | The garbage collector has been sped up, using a concurrent sweep algorithm, |
| 184 | better parallelization, and larger pages. |
| 185 | The cumulative effect can be a 50-70% reduction in collector pause time. |
| 186 | </li> |
| 187 | |
| 188 | <li> |
| 189 | The race detector (see <a href="http://golang.org/doc/articles/race_detector.html">this guide</a>) |
| 190 | is now about 40% faster. |
| 191 | </li> |
| 192 | |
| 193 | <li> |
| 194 | The regular expression package <a href="/pkg/regexp/"><code>regexp</code></a> |
| 195 | is now significantly faster for certain simple expressions due to the implemenation of |
| 196 | a second, one-pass execution engine. The choice of which engine to use is automatic; |
| 197 | the details are hidden from the user. |
Rob Pike | 09e1da3 | 2014-03-26 13:56:16 +1100 | [diff] [blame] | 198 | </li> |
| 199 | |
| 200 | </ul> |
| 201 | |
Rob Pike | 969dc76 | 2014-04-09 07:12:20 +1000 | [diff] [blame] | 202 | <p> |
| 203 | Also, the runtime now includes in stack dumps how long a goroutine has been blocked, |
| 204 | which can be useful information when debugging deadlocks or performance issues. |
| 205 | </p> |
| 206 | |
Rob Pike | 09e1da3 | 2014-03-26 13:56:16 +1100 | [diff] [blame] | 207 | <h2 id="library">Changes to the standard library</h2> |
| 208 | |
Rob Pike | 09e1da3 | 2014-03-26 13:56:16 +1100 | [diff] [blame] | 209 | <h3 id="new_packages">New packages</h3> |
| 210 | |
| 211 | <p> |
Rob Pike | 78025fb | 2014-04-08 14:07:17 +1000 | [diff] [blame] | 212 | No new packages appear in the core libraries in Go 1.3. |
Rob Pike | 09e1da3 | 2014-03-26 13:56:16 +1100 | [diff] [blame] | 213 | </p> |
| 214 | |
Rob Pike | 969dc76 | 2014-04-09 07:12:20 +1000 | [diff] [blame] | 215 | <h3 id="major_library_changes">Major changes to the library</h3> |
| 216 | |
| 217 | <p> |
Rob Pike | 56294f4 | 2014-04-09 15:20:00 +1000 | [diff] [blame] | 218 | A previous bug in <a href="/pkg/crypto/tls/"><code>crypto/tls</code></a> |
| 219 | made it possible to skip verfication in TLS inadvertently. |
| 220 | In Go 1.3, the bug is fixed: one must specify either ServerName or |
| 221 | InsecureSkipVerify, and if ServerName is specified it is enforced. |
| 222 | This may break existing code that incorrectly depended on insecure |
| 223 | behavior. |
| 224 | </p> |
| 225 | |
| 226 | <p> |
Rob Pike | 969dc76 | 2014-04-09 07:12:20 +1000 | [diff] [blame] | 227 | There is an important new type added to the standard library: <a href="/pkg/sync/#Pool"><code>sync.Pool</code></a>. |
| 228 | It provides an efficient mechanism for implementing certain types of caches whose memory |
| 229 | can be reclaimed automatically by the system. |
| 230 | </p> |
| 231 | |
| 232 | <p> |
Rob Pike | 56294f4 | 2014-04-09 15:20:00 +1000 | [diff] [blame] | 233 | The <a href="/pkg/testing/"><code>testing</code></a> package's benchmarking helper, |
| 234 | <a href="/pkg/testing/#B"><code>B</code></a>, now has a |
| 235 | <a href="/pkg/testing/#B.RunParallel"><code>RunParallel</code></a> method |
| 236 | to make it easier to run benchmarks that exercise multiple CPUs. |
| 237 | </p> |
| 238 | |
| 239 | <p> |
| 240 | <em>Updating</em>: The crypto/tls fix may break existing code, but such |
| 241 | code was erroneous and should be updated. |
Rob Pike | 969dc76 | 2014-04-09 07:12:20 +1000 | [diff] [blame] | 242 | </p> |
| 243 | |
Rob Pike | 09e1da3 | 2014-03-26 13:56:16 +1100 | [diff] [blame] | 244 | <h3 id="minor_library_changes">Minor changes to the library</h3> |
| 245 | |
| 246 | <p> |
| 247 | The following list summarizes a number of minor changes to the library, mostly additions. |
| 248 | See the relevant package documentation for more information about each change. |
| 249 | </p> |
| 250 | |
| 251 | <ul> |
| 252 | |
Rob Pike | 969dc76 | 2014-04-09 07:12:20 +1000 | [diff] [blame] | 253 | <li> |
| 254 | The complex power function, <a href="/pkg/math/cmplx/#Pow"><code>Pow</code></a>, |
| 255 | now specifies the behavior when the first argument is zero. It was undefined before. |
| 256 | The details are in the <a href="/pkg/math/cmplx/#Pow">documentation for the function</a>. |
| 257 | </li> |
| 258 | |
Rob Pike | 09e1da3 | 2014-03-26 13:56:16 +1100 | [diff] [blame] | 259 | <li> TODO: crypto/tls: add DialWithDialer (CL 68920045)</li> |
Rob Pike | 969dc76 | 2014-04-09 07:12:20 +1000 | [diff] [blame] | 260 | |
Rob Pike | 09e1da3 | 2014-03-26 13:56:16 +1100 | [diff] [blame] | 261 | <li> TODO: crypto/tls: report TLS version in ConnectionState (CL 68250043)</li> |
Rob Pike | 969dc76 | 2014-04-09 07:12:20 +1000 | [diff] [blame] | 262 | |
Rob Pike | 09e1da3 | 2014-03-26 13:56:16 +1100 | [diff] [blame] | 263 | <li> TODO: crypto/x509: support CSRs (CL 49830048)</li> |
Rob Pike | 969dc76 | 2014-04-09 07:12:20 +1000 | [diff] [blame] | 264 | |
| 265 | <li> |
| 266 | The formatted print functions of the <code>fmt</code> package now define <code>%F</code> |
| 267 | as a synonym for <code>%f</code> when printing floating-point values. |
| 268 | </li> |
| 269 | |
Brad Fitzpatrick | 4f193cd | 2014-04-08 19:46:33 -0700 | [diff] [blame] | 270 | <li> |
| 271 | The <a href="/pkg/net/http/"><code>net/http</code></a> package now exposes the |
| 272 | the properties of a TLS connection used to make a client request in the new |
| 273 | <a href="/pkg/net/http/#Response"><code>Response.TLS</code></a> field. |
| 274 | </li> |
Rob Pike | 969dc76 | 2014-04-09 07:12:20 +1000 | [diff] [blame] | 275 | |
Brad Fitzpatrick | 4f193cd | 2014-04-08 19:46:33 -0700 | [diff] [blame] | 276 | <li> |
| 277 | The <a href="/pkg/net/http/"><code>net/http</code></a> package now |
| 278 | allows setting an optional server error logger |
| 279 | with <a href="/pkg/net/http/#Server"><code>Server.ErrorLog</code></a>. |
| 280 | The default is still that all errors go to stderr. |
| 281 | </li> |
Rob Pike | 969dc76 | 2014-04-09 07:12:20 +1000 | [diff] [blame] | 282 | |
Rob Pike | 09e1da3 | 2014-03-26 13:56:16 +1100 | [diff] [blame] | 283 | <li> TODO: net/http: add Server.SetKeepAlivesEnabled (CL 69670043)</li> |
Rob Pike | 969dc76 | 2014-04-09 07:12:20 +1000 | [diff] [blame] | 284 | |
Rob Pike | 09e1da3 | 2014-03-26 13:56:16 +1100 | [diff] [blame] | 285 | <li> TODO: net/http: add Transport.TLSHandshakeTimeout; set it by default (CL 68150045)</li> |
Rob Pike | 969dc76 | 2014-04-09 07:12:20 +1000 | [diff] [blame] | 286 | |
Rob Pike | 09e1da3 | 2014-03-26 13:56:16 +1100 | [diff] [blame] | 287 | <li> TODO: net/http: add optional Server.ConnState callback (CL 69260044)</li> |
Rob Pike | 969dc76 | 2014-04-09 07:12:20 +1000 | [diff] [blame] | 288 | |
Rob Pike | 09e1da3 | 2014-03-26 13:56:16 +1100 | [diff] [blame] | 289 | <li> TODO: net/http: use TCP Keep-Alives on DefaultTransport's connections (CL 68330046)</li> |
Rob Pike | 969dc76 | 2014-04-09 07:12:20 +1000 | [diff] [blame] | 290 | |
Rob Pike | 09e1da3 | 2014-03-26 13:56:16 +1100 | [diff] [blame] | 291 | <li> TODO: net/http: use TCP keep-alives for ListenAndServe and ListenAndServeTLS (CL 48300043)</li> |
Rob Pike | 969dc76 | 2014-04-09 07:12:20 +1000 | [diff] [blame] | 292 | |
Rob Pike | 09e1da3 | 2014-03-26 13:56:16 +1100 | [diff] [blame] | 293 | <li> TODO: net: add Dialer.KeepAlive option (CL 68380043)</li> |
Rob Pike | 969dc76 | 2014-04-09 07:12:20 +1000 | [diff] [blame] | 294 | |
Rob Pike | 09e1da3 | 2014-03-26 13:56:16 +1100 | [diff] [blame] | 295 | <li> TODO: net: enable fast socket creation using SOCK_CLOEXEC and Accept4 on FreeBSD 10 (69100043)</li> |
Rob Pike | 969dc76 | 2014-04-09 07:12:20 +1000 | [diff] [blame] | 296 | |
| 297 | <li> |
| 298 | The <a href="/pkg/os/exec/"><code>os/exec</code></a> package now implements |
| 299 | what the documentation has always said with regard to relative paths for the binary. |
| 300 | In particular, it only calls <a href="/pkg/os/exec/#LookPath"><code>LookPath</code></a> |
| 301 | when the binary's file name contains no path separators. |
| 302 | </li> |
| 303 | |
| 304 | <li> |
| 305 | The <a href="/pkg/strconv/#CanBackquote"><code>CanBackquote</code></a> |
| 306 | function in the <a href="/pkg/strconv/"><code>strconv</code></a> package |
| 307 | now considers the <code>DEL</code> character, <code>U+007F</code>, to be |
| 308 | non-printing. |
| 309 | </li> |
| 310 | |
Rob Pike | 09e1da3 | 2014-03-26 13:56:16 +1100 | [diff] [blame] | 311 | <li> TODO: syscall: add Accept4 for freebsd (CL 68880043)</li> |
Rob Pike | 969dc76 | 2014-04-09 07:12:20 +1000 | [diff] [blame] | 312 | |
Rob Pike | 09e1da3 | 2014-03-26 13:56:16 +1100 | [diff] [blame] | 313 | <li> TODO: syscall: add NewCallbackCDecl to use for windows callbacks (CL 36180044)</li> |
Rob Pike | 969dc76 | 2014-04-09 07:12:20 +1000 | [diff] [blame] | 314 | |
Rob Pike | 09e1da3 | 2014-03-26 13:56:16 +1100 | [diff] [blame] | 315 | <li> TODO: syscall: add support for FreeBSD 10 (CL 56770044, 56980043)</li> |
Rob Pike | 969dc76 | 2014-04-09 07:12:20 +1000 | [diff] [blame] | 316 | |
Rob Pike | 969dc76 | 2014-04-09 07:12:20 +1000 | [diff] [blame] | 317 | <li> |
| 318 | The <a href="/pkg/testing/"><code>testing</code></a> package now |
Rob Pike | c5f14c5 | 2014-04-09 08:19:35 +1000 | [diff] [blame] | 319 | diagnoses tests that call <code>panic(nil)</code>, which are almost always erroneous. |
Rob Pike | 969dc76 | 2014-04-09 07:12:20 +1000 | [diff] [blame] | 320 | </li> |
| 321 | |
| 322 | <li> |
| 323 | The <a href="/pkg/unicode/"><code>unicode</code></a> package and associated |
| 324 | support throughout the system has been upgraded from |
| 325 | Unicode 6.2.0 to <a href="http://www.unicode.org/versions/Unicode6.3.0/">Unicode 6.3.0</a>. |
| 326 | </li> |
| 327 | |
Rob Pike | 09e1da3 | 2014-03-26 13:56:16 +1100 | [diff] [blame] | 328 | </ul> |