Go (programming language)

From Infogalactic: the planetary knowledge core
Jump to: navigation, search

<templatestyles src="Module:Hatnote/styles.css"></templatestyles>

Go
Golang.png
Go's mascot is a gopher, designed by Renée French.[1]
Paradigm compiled, concurrent, imperative, structured
Designed by Robert Griesemer
Rob Pike
Ken Thompson
Developer Google Inc.
First appeared 2009; 15 years ago (2009)
Stable release version 1.5.2[2] / 3 December 2015; 8 years ago (2015-12-03)
Typing discipline strong, static, inferred, structural[3]
Implementation language Go, Assembly language, previously C (gc); C++ (gccgo)
OS Linux, OS X, FreeBSD, NetBSD, OpenBSD,[4] MS Windows, Plan 9,[5] DragonFly BSD, Solaris
License BSD-style[6] + Patent grant[7]
Filename extensions .go
Website golang.org
Major implementations
gc, gccgo
Influenced by
Alef, C, occam, Limbo, Modula, Newsqueak, Oberon, Python, Pascal,[8] Smalltalk[9]

Go also commonly referred to as golang, is a open source programming language developed at Google[10] in 2007 by Robert Griesemer, Rob Pike, and Ken Thompson.[8] Designed primarily for systems programming, it is a compiled, statically typed language in the tradition of C and C++, with garbage collection, various safety features and CSP-style concurrent programming features added.[11]

The language was announced in November 2009; it is used in some of Google's production systems,[12] as well as by other firms. Two major implementations exist: Google's Go compiler, "gc", is developed as open source software and targets various platforms including Linux, OS X, Windows, various BSD and Unix versions, and since 2015 also mobile devices, including smartphones.[13] A second compiler, gccgo, is a GCC frontend.[14][15] Golang was made in Go from version1.5

History

Lua error in package.lua at line 80: module 'strict' not found.

Go originated as an experiment by Robert Griesemer, Rob Pike and Ken Thompson at Google, to design a new systems programming language, with the following desiderata; the new language was to[16]

  • be statically typed, scalable to large systems (as Java and C++);
  • be "light on the page" (like dynamic languages);
  • support networking and multiprocessing.

In later interviews, all three of the language designers cited their shared dislike of C++'s complexity as a reason to design a new language.[17][18][19]

Language design

Go is recognizably in the tradition of C, but makes many changes to improve conciseness, simplicity, and safety. The following is a brief overview of the features which define Go:

  • A syntax and environment adopting patterns more common in dynamic languages:[20]
    • Optional concise variable declaration and initialization through type inference (x := 0 not int x = 0;).
    • Fast compilation times.[21]
    • Remote package management (go get)[22] and online package documentation.[23]
  • Distinctive approaches to particular problems:
  • A desire to keep the language specification simple enough to hold in a programmer's head,[24] in part by omitting features common to similar languages; see § Omissions.

Frequent criticisms assert that:

The language designers argue that these trade-offs are important to Go's success,[30] and explain some particular decisions at length,[31] though they do express openness to adding some form of generic programming in the future, and to pragmatic improvements in areas like standardizing ways to apply code generation[32] and reducing garbage collection pause times.[33]

Syntax

Go's syntax includes changes from C aimed at keeping code concise and readable. A combined declaration/initialization operator was introduced that allows the programmer to write i := 3 or s := "some words", without specifying the types of variables. This contrasts with C's int i = 3; and const char *s = "some words";. Semicolons still terminate statements, but are implicit when they would occur at the end of a line. Functions may return multiple values, and returning a result, err pair is the conventional way a function indicates an error to its caller in Go.[lower-alpha 1] Go adds literal syntaxes for initializing struct parameters by name, and for initializing maps and slices. As an alternative to C's three-statement for loop, Go's range expressions allow concise iteration over arrays, slices, strings, maps and channels.

Types

Go has a number of built-in types, including numeric ones (byte, int64, float32, etc.), booleans, and character strings (string). Strings are immutable; built-in operators and keywords (rather than functions) provide concatenation, comparison, and UTF-8 encoding and decoding.[34] Record types can be defined with the struct keyword.

For each type T and each non-negative integer constant n, there is an array type denoted [n]T; arrays of differing lengths are thus of different types. Dynamic arrays are available as "slices", denoted []T for some type T. These have a length and a capacity specifying when new memory needs to be allocated to expand the array. Several slices may share their underlying memory.[35]:{{{3}}}[36][37]

Pointers are available for all types, and the pointer-to-T type is denoted *T. Pointer operations are limited to indirection; there is no pointer arithmetic (except via the special unsafe.Pointer type provided by the standard library).

For a pair of types K, V, the type map[K]V is the type of hash tables mapping type-K keys to type-V values. Hash tables are built into the language, with special syntax and built-in functions. Finally, chan T is a channel that allows sending values of type T between concurrently running processes; see § Concurrency.

Aside from its support for interfaces, Go's type system is nominal: the type keyword can be used to define a new named type, which is distinct from other named types that have the same layout (in the case of a struct, the same members in the same order). Some conversions between types (e.g., between the various integer types) are pre-defined and adding a new type may define additional conversions, but conversions between named types must always be invoked explicitly.[38] For example, the type keyword can be used to define a type for IPv4 addresses, which are 32-bit unsigned integers:

type ipv4addr uint32

With this type definition, ipv4addr(x) interprets the uint32 value x as an IP address. Simply assigning x to a variable of type ipv4addr is a type error.

Constant expressions may be either typed or "untyped"; they are given a type when assigned to a typed variable, if the value they represent passes a compile-time check.[39]

Function types are indicated by the func keyword; they take zero or more parameters and return zero or more values, all of which are typed. The parameter and return values determine a function type; thus, func(string, int32) (int, error) is the type of functions that take a string and a 32-bit signed integer, and return a signed integer (of default width) and a value of the built-in interface type error.

Any named type has a method set associated with it. The IP address example above can be extended with a method for converting an address to a human-readable representation, viz.,

// Is this the zero broadcast address 255.255.255.255?
func (addr ipv4addr) ZeroBroadcast() bool {
    return addr == 0xFFFFFFFF
}

Due to nominal typing, this method definition adds a method to ipv4addr, but not on uint32. While methods have special definition and call syntax, there is no distinct method type.[40]

Interface system

Go provides two features that replace class inheritance. The first is embedding, which can be viewed as an automated form of composition[41]:{{{3}}} or delegation.[42]:255 The second are its interfaces, which provides runtime polymorphism.[43]:266

An interface specifies a set of types by listing required methods and their types, and is satisfied by any type that has the required methods. Implementing types do not need to specify their implementing of interfaces, so if Shape, Square and Circle are defined as

import "math"

type Shape interface {
    Area() float64
}

type Square struct { // Note: no "implements" declaration
    side float64
}

func (sq Square) Area() float64 { return sq.side * sq.side }

type Circle struct { // No "implements" declaration here either
    radius float64
}

func (c Circle) Area() float64 { return math.Pi * math.Pow(c.radius, 2) }

then both Square and Circle are implicitly a Shape and can be assigned to a Shape-typed variable.[43]:{{{3}}}:263–268 In formal language, Go's interface system provides structural rather than nominal typing. Interfaces can embed other interfaces with the effect of creating a combined interface that is satisfied by exactly the types that implement the embedded interface and any methods that the newly defined interface adds.[43]:{{{3}}}:270

The Go standard library uses interfaces to provide genericity in several places, including the input/output system that is based on the concepts of Reader and Writer.[43]:{{{3}}}:282–283

Besides calling methods via interfaces, Go allows converting interface values to other types with a run-time type check. The language constructs to do so are the type assertion,[44] which checks against a single potential type, and the type switch,[45] which checks against multiple types.

The empty interface interface{} is an important corner case because it can refer to an item of any concrete type. It is similar to the Object class in Java or C#, but with the difference that the empty interface is satisfied by any type, including built-in types like int (while in Java and C#, an Object variable can only hold instances of reference type).[43]:{{{3}}}:284 Code using the empty interface can't simply call methods (or built-in operators) on the referred-to object, but it can store the interface{} value, try to convert it to a more useful type via a type assertion or type switch, or inspect it with Go's reflect package.[46] Because interface{} can refer to any value, it's a limited way to escape the restrictions of static typing, like void* in C but with additional run-time type checks.

Interface values are implemented using pointer to data and a second pointer to run-time type information.[47] Like some other types implemented using pointers in Go, interface values are nil if uninitialized.[48]

Package system

In Go's package system, each package has a path (e.g., "compress/bzip2" or "golang.org/x/net/html") and a name (e.g., bzip2 or html). References to other packages' definitions must always be prefixed with the other package's name, and only the capitalized names from other packages are accessible: io.Reader is public but bzip2.reader is not.[49] The go get command can retrieve packages stored in a remote repository such as GitHub, and package paths often look like partial URLs for compatibility.[50]

Concurrency: goroutines and channels

The Go language has built-in facilities, as well as library support, for writing concurrent programs. Concurrency refers not only to CPU parallelism, but also to asynchrony: letting slow operations like a database or network-read run while the program does other work, as is common in event-based servers.[51] The primary concurrency construct is the goroutine, a type of light-weight process. A function call prefixed with the go keyword starts a function in a new goroutine. The language specification does not specify how goroutines should be implemented, but current implementations multiplex a Go process's goroutines onto a smaller set of operating system threads, similar to the scheduling performed in Erlang or Java threads.[52]:{{{3}}}:10

While a standard library package featuring most of the classical concurrency control structures (mutex locks, etc.) is available,[52]:{{{3}}}:151–152 idiomatic concurrent programs instead use channels, which are synchronized FIFO buffers, to send messages between goroutines.[53][54][55] Channels are typed, so that a channel of type chan T can only be used to transfer messages of type T. Special syntax is used to operate on them; <-ch is an expression that causes the executing goroutine to block until a value comes in over the channel ch, while ch <- x sends the value x (possibly blocking until another goroutine receives the value). The built-in switch-like select statement can be used to implement non-blocking communication on multiple channels; see below for an example. The existence of channels sets Go apart from actor model-style concurrent languages like Erlang, where messages are addressed directly to actors (corresponding to goroutines); the actor style can be simulated in Go by maintaining a one-to-one correspondence between goroutines and channels, but the language allows multiple goroutines to share a channel, or a single goroutine to send and receive on multiple channels.[52]:{{{3}}}:147

From these tools one can build concurrent constructs like worker pools, pipelines (in which, say, a file is decompressed and parsed as it downloads), background calls with timeout, "fan-out" parallel calls to a set of services, and others.[56] Channels have also found uses further from the usual notion of interprocess communication, like serving as a concurrency-safe list of recycled buffers,[57] implementing coroutines (which helped inspire the name goroutine),[58] and implementing iterators.[59]

Goroutines and channels concurrency-related structural conventions of Go (channels and alternative channel inputs) are derived from Tony Hoare's communicating sequential processes model. Unlike previous concurrent programming languages such as occam or Limbo (a language on which Go co-designer Rob Pike worked),[60] Go does not provide any built-in notion of safe or verifiable concurrency.[61] While the communicating-processes model is favored in Go, it isn't the only one: all goroutines in a program share a single address space. This means that mutable objects and pointers can be shared between goroutines; see § Lack of race condition safety, below.

Suitability for parallel programming

Although Go's concurrency features are not aimed primarily at parallel processing,[51]:{{{3}}} they can be used to program shared memory multi-processor machines. Various studies have been done into the effectiveness of this approach.[62] One of these studies compared the size (in lines of code) and speed of programs written by a seasoned programmer not familiar with the language and corrections to these programs by a Go expert (from Google's development team), doing the same for Chapel, Cilk and Intel TBB. The study found that the non-expert tended to write divide-and-conquer algorithms with one go statement per recursion, while the expert wrote distribute-work-synchronize programs using one goroutine per processor. The expert's programs were usually faster, but also longer.[63]

Lack of race condition safety

There are no restrictions on how goroutines access shared data, making race conditions possible. Specifically, unless a program explicitly synchronizes via channels or other means, writes from one goroutine might be partly, entirely, or not at all visible to another, often with no guarantees about ordering of writes.[61] Furthermore, Go's internal data structures like interface values, slice headers, hash tables, and string headers are not immune to race conditions, so type and memory safety can be violated in multithreaded programs that modify shared instances of those types without synchronization.[64][65]

Instead of language support, safe concurrent programming thus relies on conventions; for example, Chisnall recommends an idiom called "aliases xor mutable", meaning that passing a mutable value (or pointer) over a channel signals a transfer of ownership over the value to its receiver.[52]:{{{3}}}:155

Omissions

Go deliberately omits certain features common in other languages, including (implementation) inheritance, generic programming, assertions, pointer arithmetic, and implicit type conversions.

Of these language features, the Go authors express an openness to generic programming, explicitly argue against assertions and pointer arithmetic, while defending the choice to omit type inheritance as giving a more useful language, encouraging instead the use of interfaces to achieve dynamic dispatch[lower-alpha 2] and composition to reuse code. Composition and delegation are in fact largely automated by struct embedding; according to researchers Schmager et al., this feature "has many of the drawbacks of inheritance: it affects the public interface of objects, it is not fine-grained (i.e, no method-level control over embedding), methods of embedded objects cannot be hidden, and it is static", making it "not obvious" whether programmers will not overuse it to the extent that programmers in other languages are reputed to overuse inheritance.[41]

Regarding generic programming, some built-in functions are in fact type-generic, but these are treated as special cases; Rob Pike calls this a weakness of the language that may at some point be changed.[35] The Google team that designs the language built at least one compiler for an experimental Go dialect with generics, but didn't release it.[66]

After initially omitting exceptions, the exception-like panic/recover mechanism was eventually added to the language, which the Go authors advise using for unrecoverable errors such as those that should halt an entire program or server request, or as a shortcut to propagate errors up the stack within a package (but not across package boundaries; there, error returns are the standard API).[67][68][69][70]

Conventions and code style

The Go authors put substantial effort into molding the style and design of Go programs:

  • Indentation, spacing, and other surface-level details of code are automatically standardized by the gofmt tool. golint does additional style checks automatically.
  • Tools and libraries distributed with Go suggest standard approaches to things like API documentation (godoc[71]), testing (go test), building (go build), package management (go get), and so on.
  • Go enforces rules that are recommendations in other languages, for example banning cyclic dependencies, unused variables or imports, and implicit type conversions.
  • The omission of certain features (for example, functional-programming shortcuts like map and C++-style try/finally blocks) tends to encourage a particular explicit, concrete, and imperative programming style.
  • On day one the Go team published a collection of Go idioms, and later also collected code review comments, talks, official blog posts to teach Go style and coding philosophy.

Language tools

Go includes the same sort of debugging, testing, and code-vetting tools as many language distributions. The Go distribution includes, among other tools,

  • go build, which builds Go binaries using only information in the source files themselves, no separate makefiles
  • go test, for unit testing and microbenchmarks
  • go fmt, for formatting code
  • go get, for retrieving and installing remote packages
  • go vet, a static analyzer looking for potential errors in code
  • go run, a shortcut for building and executing code
  • godoc, for displaying documentation or serving it via HTTP
  • gorename, for renaming variables, functions, and so on in a type-safe way
  • go generate, a standard way to invoke code generators

It also includes profiling and debugging support, runtime instrumentation (to, for example, track garbage collection pauses), and a race condition tester.

There is an ecosystem of third-party tools that add to the standard distribution, such as gocode, which enables code autocompletion in many text editors, goimports (by a Go team member), which automatically adds/removes package imports as needed, errcheck, which detects code that might unintentionally ignore errors, and more. Plugins exist to add language support in widely used text editors, and at least one IDE, LiteIDE, is branded as "a simple, open source, cross-platform Go IDE."[72]

Examples

Hello world

Here is a Hello world program in Go:

package main

import "fmt"

func main() {
    fmt.Println("Hello, World")
}

Concurrency example

The following simple program demonstrates Go's concurrency features to implement an asynchronous program. It launches two "goroutines" (lightweight threads): one waits for the user to type some text, while the other implements a timeout. The select statement waits for either of these goroutines to send a message to the main routine, and acts on the first message to arrive (example adapted from Chisnall).[52]:152

package main

import (
    "fmt"
    "time"
)

func readword(ch chan string) {
    fmt.Println("Type a word, then hit Enter.")
    var word string
    fmt.Scanf("%s", &word)
    ch <- word
}

func timeout(t chan bool) {
    time.Sleep(5 * time.Second)
    t <- true
}

func main() {
    t := make(chan bool)
    go timeout(t)

    ch := make(chan string)
    go readword(ch)

    select {
    case word := <-ch:
        fmt.Println("Received", word)
    case <-t:
        fmt.Println("Timeout.")
    }
}

Notable users

Lua error in package.lua at line 80: module 'strict' not found. Some notable open-source applications in Go include:

  • Docker, a set of tools for deploying Linux containers
  • Doozer, a lock service by managed hosting provider Heroku[11]:{{{3}}}
  • Juju, a service orchestration tool by Canonical, packagers of Ubuntu Linux
  • Syncthing, an open-source file synchronization client/server application
  • Packer, a tool for creating identical machine images for multiple platforms from a single source configuration

Other companies and sites using Go (generally together with other languages, not exclusively) include:[73][self-published source?][74]

Reception

Go's initial release led to much discussion.

The interface system, and the deliberate omission of inheritance, were praised by Michele Simionato, who likened these language characteristics to those of Standard ML, calling it "a shame that no popular language has followed [this] particular route in the design space".[88]

Dave Astels at Engine Yard wrote:[89]

<templatestyles src="Template:Blockquote/styles.css" />

Go is extremely easy to dive into. There are a minimal number of fundamental language concepts and the syntax is clean and designed to be clear and unambiguous. Go is still experimental and still a little rough around the edges.

Ars Technica interviewed Rob Pike, one of the authors of Go, and asked why a new language was needed. He replied that:[90]

<templatestyles src="Template:Blockquote/styles.css" />

It wasn't enough to just add features to existing programming languages, because sometimes you can get more in the long run by taking things away. They wanted to start from scratch and rethink everything. ... [But they did not want] to deviate too much from what developers already knew because they wanted to avoid alienating Go's target audience.

Go was named Programming Language of the Year by the TIOBE Programming Community Index in its first year, 2009, for having a larger 12-month increase in popularity (in only 2 months, after its introduction in November) than any other language that year, and reached 13th place by January 2010,[91] surpassing established languages like Pascal. As of June 2015, its ranking had dropped to below 50th in the index, placing it lower than COBOL and Fortran.[92]

Regarding Go, Bruce Eckel has stated:[93]

<templatestyles src="Template:Blockquote/styles.css" />

The complexity of C++ (even more complexity has been added in the new C++), and the resulting impact on productivity, is no longer justified. All the hoops that the C++ programmer had to jump through in order to use a C-compatible language make no sense anymore -- they're just a waste of time and effort. Now, Go makes much more sense for the class of problems that C++ was originally intended to solve.

A 2011 evaluation of the language and its gc implementation in comparison to C++ (GCC), Java and Scala by a Google engineer found that

<templatestyles src="Template:Blockquote/styles.css" />

Go offers interesting language features, which also allow for a concise and standardized notation. The compilers for this language are still immature, which reflects in both performance and binary sizes.

— R. Hundt[94]

The evaluation got a rebuttal from the Go development team. Ian Lance Taylor, who had improved the Go code for Hundt's paper, had not been aware of the intention to publish his code, and says that his version was "never intended to be an example of idiomatic or efficient Go"; Russ Cox then did optimize the Go code, as well as the C++ code, and got the Go code to run slightly faster than C++ and more than an order of magnitude faster than the "optimized" code in the paper.[95]

Naming dispute

On 10 November 2009, the day of the general release of the language, Francis McCabe, developer of the Go! programming language (note the exclamation point), requested a name change of Google's language to prevent confusion with his language, which he had spent 10 years developing.[96] McCabe raised concerns that "the 'big guy' will end up steam-rollering over" him, this concern resonated with the more than 120 developers who commented on Google's official issues thread saying they should change the name, with some[97] even saying the issue contradicts Google's, now abandoned, motto of Don't be evil.[98] The issue was closed by a Google developer on 12 October 2010 with the custom status "Unfortunate" and with the following comment: "there are many computing products and services named Go. In the 11 months since our release, there has been minimal confusion of the two languages."

Version history

Version Date
1.0 2012-03-28[99]
1.1 2013-05-13[100]
1.2 2013-12-01[101]
1.3 2014-06-18[102]
1.4 2014-12-10[103]
1.5 2015-08-19[104]

See also

Notes

  1. Usually, exactly one of the result and error values has a value other than the type's zero value; sometimes both do, as when a read or write can only be partially completed, and sometimes neither, as when a read returns 0 bytes. See Semipredicate problem: Multivalued return.
  2. Questions "How do I get dynamic dispatch of methods?" and "Why is there no type inheritance?" in the language FAQ.[8]

References

<templatestyles src="Module:Hatnote/styles.css"></templatestyles>

  1. Lua error in package.lua at line 80: module 'strict' not found.
  2. Lua error in package.lua at line 80: module 'strict' not found.
  3. Lua error in package.lua at line 80: module 'strict' not found.
  4. Lua error in package.lua at line 80: module 'strict' not found.
  5. Lua error in package.lua at line 80: module 'strict' not found.
  6. Lua error in package.lua at line 80: module 'strict' not found.
  7. Lua error in package.lua at line 80: module 'strict' not found.
  8. 8.0 8.1 8.2 Lua error in package.lua at line 80: module 'strict' not found.
  9. Lua error in package.lua at line 80: module 'strict' not found.
  10. Lua error in package.lua at line 80: module 'strict' not found.
  11. 11.0 11.1 Lua error in package.lua at line 80: module 'strict' not found.
  12. Lua error in package.lua at line 80: module 'strict' not found.
  13. Lua error in package.lua at line 80: module 'strict' not found.
  14. Lua error in package.lua at line 80: module 'strict' not found.
  15. Lua error in package.lua at line 80: module 'strict' not found.
  16. Lua error in package.lua at line 80: module 'strict' not found. Video available.
  17. Lua error in package.lua at line 80: module 'strict' not found.
  18. Lua error in package.lua at line 80: module 'strict' not found.
  19. Lua error in package.lua at line 80: module 'strict' not found.
  20. Lua error in package.lua at line 80: module 'strict' not found.
  21. Lua error in package.lua at line 80: module 'strict' not found.
  22. Download and install packages and dependencies - go - The Go Programming Language; see godoc.org for addresses and documentation of some packages
  23. Lua error in package.lua at line 80: module 'strict' not found.
  24. Rob Pike, on The Changelog podcast
  25. 25.0 25.1 25.2 Will Yager, Why Go is not Good
  26. Egon Elbre, Summary of Go Generics discussions
  27. Danny Gratzer, Leaving Go
  28. 28.0 28.1 Jared Forsyth, Rust vs. Go
  29. Janos Dobronszki, Everyday Hassles in Go
  30. Rob Pike, Less is exponentially more
  31. The Go Authors, Frequently Asked Questions (FAQ)
  32. Rob Pike, Generating code
  33. Richard Hudson, Go 1.4+ Garbage Collection (GC) Plan and Roadmap
  34. Rob Pike, Strings, bytes, runes and characters in Go, 23 October 2013
  35. 35.0 35.1 Lua error in package.lua at line 80: module 'strict' not found.
  36. Andrew Gerrand, Go Slices: usage and internals
  37. The Go Authors, Effective Go: Slices
  38. Lua error in package.lua at line 80: module 'strict' not found.
  39. Lua error in package.lua at line 80: module 'strict' not found.
  40. Lua error in package.lua at line 80: module 'strict' not found.
  41. 41.0 41.1 Lua error in package.lua at line 80: module 'strict' not found.
  42. Lua error in package.lua at line 80: module 'strict' not found.
  43. 43.0 43.1 43.2 43.3 43.4 Lua error in package.lua at line 80: module 'strict' not found.
  44. Lua error in package.lua at line 80: module 'strict' not found.
  45. Lua error in package.lua at line 80: module 'strict' not found.
  46. reflect.ValueOf(i interface{}) converts an interface{} to a reflect.Value that can be further inspected
  47. Lua error in package.lua at line 80: module 'strict' not found.
  48. Lua error in package.lua at line 80: module 'strict' not found.
  49. Lua error in package.lua at line 80: module 'strict' not found.
  50. Lua error in package.lua at line 80: module 'strict' not found.
  51. 51.0 51.1 Rob Pike, Concurrency is not Parallelism
  52. 52.0 52.1 52.2 52.3 52.4 Lua error in package.lua at line 80: module 'strict' not found.
  53. Lua error in package.lua at line 80: module 'strict' not found.
  54. Andrew Gerrand, Share memory by communicating
  55. Andrew Gerrand, Codewalk: Share memory by communicating
  56. Lua error in package.lua at line 80: module 'strict' not found.
  57. John Graham-Cumming, Recycling Memory Buffers in Go
  58. tree.go
  59. Ewen Cheslack-Postava, Iterators in Go
  60. Brian W. Kernighan, A Descent Into Limbo
  61. 61.0 61.1 Lua error in package.lua at line 80: module 'strict' not found.
  62. Lua error in package.lua at line 80: module 'strict' not found.
  63. Lua error in package.lua at line 80: module 'strict' not found.
  64. Russ Cox, Off to the Races
  65. Lua error in package.lua at line 80: module 'strict' not found. "There is one important caveat: Go is not purely memory safe in the presence of concurrency."
  66. Lua error in package.lua at line 80: module 'strict' not found.
  67. Panic And Recover, Go wiki
  68. Lua error in package.lua at line 80: module 'strict' not found.
  69. Lua error in package.lua at line 80: module 'strict' not found.
  70. Lua error in package.lua at line 80: module 'strict' not found.
  71. Lua error in package.lua at line 80: module 'strict' not found.
  72. LiteIDE,
  73. Erik Unger, The Case For Go
  74. Andrew Gerrand, Four years of Go, The Go Blog
  75. Lua error in package.lua at line 80: module 'strict' not found.
  76. Matt Welsh, Rewriting a Large Production System in Go
  77. David Symonds, High Performance Apps on Google App Engine
  78. Patrick Lee, Open Sourcing Our Go Libraries, 7 July 2014.
  79. John Graham-Cumming, Go at CloudFlare
  80. John Graham-Cumming, What we've been doing with Go
  81. Peter Bourgon, Go at SoundCloud
  82. Lua error in package.lua at line 80: module 'strict' not found.
  83. Lua error in package.lua at line 80: module 'strict' not found.
  84. Lua error in package.lua at line 80: module 'strict' not found.
  85. Lua error in package.lua at line 80: module 'strict' not found.
  86. Lua error in package.lua at line 80: module 'strict' not found.
  87. Lua error in package.lua at line 80: module 'strict' not found.
  88. Lua error in package.lua at line 80: module 'strict' not found.
  89. Lua error in package.lua at line 80: module 'strict' not found.
  90. Lua error in package.lua at line 80: module 'strict' not found.
  91. Lua error in package.lua at line 80: module 'strict' not found.
  92. Lua error in package.lua at line 80: module 'strict' not found.
  93. Lua error in package.lua at line 80: module 'strict' not found.
  94. Lua error in package.lua at line 80: module 'strict' not found.
  95. Lua error in package.lua at line 80: module 'strict' not found.
  96. Lua error in package.lua at line 80: module 'strict' not found.
  97. Lua error in package.lua at line 80: module 'strict' not found.
  98. Lua error in package.lua at line 80: module 'strict' not found.
  99. Go 1.0 is released
  100. Go 1.1 is released
  101. Go 1.2 is released
  102. Go 1.3 is released
  103. Go 1.4 is released
  104. Go 1.5 is released

External links

Community and conferences

  • Gopher Academy, Gopher Academy is a group of developers working to educate and promote the golang community.
  • Golangprojects.com, lists programming jobs and projects where companies are looking for people that know Go
  • GopherCon The first Go conference. Denver, Colorado, USA April 24–26, 2014
  • Gopher Gala The first Golang hackathon. Jan 23 - 25 2015.
  • GopherConIndia The first Go conference in India. Bangalore Feb. 19-21 2015
  • GolangUK The first Golang conference in UK. London 21st Aug 2015
  • dotGo European conference. Paris, France November 9, 2015
  1. REDIRECT Template:Google LLC