Go is a procedural programming language. It was developed in 2007 by Robert Griesemer, Rob Pike, and Ken Thompson at Google but launched in 2009 as an open-source programming language. Programs are assembled by using packages, for efficient management of dependencies. This language also supports environment adopting patterns alike to dynamic languages. For eg., type inference (y:= 0 is a valid declaration of a variable y of type float). There are various online IDEs such as The Go Playground, repl.it, etc. which can be used to run Go programs without installing.

For installing Go in own PCs or Laptop we need of following two software: Text editor and Compiler

My first program in go

package main 

import "fmt"

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

Built With

Share this project:

Updates