Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 653 Bytes

README.md

File metadata and controls

27 lines (19 loc) · 653 Bytes

Go Programming Language

Go language codes and concepts.

What is Go?

  • 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.
  • Compiler Language.

Hello World in Go !

package main

import "fmt"

func main() {

	// prints Hello, Go
	fmt.Println("Hello, Go")
}

By ❤️ Ashwin Kumar Ramaswamy