Skip to content

abhishekghoshh/golang-helper

Repository files navigation

Golang Basics

My resources

online resources and tools

Youtube videos

go project file structure

Style guide

Udemy courses

Common go terminologies

Go is an open-source programming language that makes it easy to build simple, reliable, and efficient software.

Go was designed at Google in 2007 to improve programming productivity in an era of multicore, networked machines and large codebases.

The language is often referred to as Golang because of its domain name, golang.org, but its proper name is Go.

How do we run GO projects in CMD :

  • go build : Compiles a bunch of go source code files
  • go run : Compiles and executes one or two files
  • go fmt : Formats all the code in each file in the current directory
  • go install : Compiles and "installs" a package/current porject in bin directory
  • go get : Downloads the raw source code of someone else's package
  • go test : Runs any tests associated with the current project

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages