Skip to content
/ GoLang Public

Go language codes and concepts ๐Ÿ˜๐Ÿ˜

Notifications You must be signed in to change notification settings

Ash515/GoLang

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

17 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

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

About

Go language codes and concepts ๐Ÿ˜๐Ÿ˜

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages