> For the complete documentation index, see [llms.txt](https://cpb.gitbook.io/book/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://cpb.gitbook.io/book/languages/golang/misc.md).

# Some interesting facts

* **Twitch.tv**, an IRC based chat was migrated from Python to Golang
* **SoundCloud** says they use Golang for `dozens of systems`
* **Netflix** use it for their server architecture
* **Docker** uses Golang for a set of tools that deploys Linux containers
* **Uber** has their geo data and location components built on Golang

## Example of code written in Go compared to other languages

### Golang

```go
package main

import "fmt"

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

### Python

```python
print "Hello world!"
```

### Ruby

```ruby
puts "Hello world!"
```

Just a simple example of `Hello World` type of code.
