Go (Golang) is a statically-typed, compiled language created at Google, designed for simplicity, fast compilation, and built-in concurrency. Its philosophy is to be small and explicit — few features, easy to read, productive at scale.
A small Hello World
main
{
fmt.Println()
}
