Go

Go is a general-purpose programming language for systems programming. It is strongly and statically typed, garbage-collected and has explicit support for concurrent programming. 
Below program will print the “Hello, world” message. 
```
package main
import "fmt"

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