Programming Languages125k+ stars

Go

The Go programming language designed at Google

Commit Details

Message
"hello, world"
Author
Brian Kernighan
Date
2008-03-02
Hash
7d7c6a97f815e9279d08cfaea7d5efb5e90695a8

Fun Fact

The first Go commit is credited to Brian Kernighan (of "The C Programming Language" fame), but Go was designed by Rob Pike, Ken Thompson, and Robert Griesemer.

</>First Code

Go
package main

func main() {
	print("hello, world\n")
}