Concurrently efficient systems programming language
Go is compiled statically to native machine code. It supports thousands of concurrent routines using lightweight Goroutines.
package main
import "fmt"
func main() {
fmt.Println("Hello Go compiler!")
}