Go, also known as Golang, is a statically-typed concurrent programming language made by an engineer team at Google.[8][9]
Here is a hello world program in Go.
package main // Import fmt library through the standard library. import "fmt" // Define entry point. func main() { // Write to output. fmt.println("Hello world!") }
Although Go has types and methods and allows an object-oriented style of programming, there is no type hierarchy.
Go is Object Oriented, but not in the usual way.
Go has structural typing, not duck typing. Full interface satisfaction is checked and required.