/Go_Lang

Go Programming Learning| Beginner To Expert|

Primary LanguageGoMIT LicenseMIT

Go_L

Author : @Jaz-3-0

Go Programming Full Career path | Beginner To Expert This marks my great Enthusiasm in Blockchain Development. | Decentralized WRLD

Gettin started

Intro to Setup , syntax and concepts

  • imports
  • packages
  • add module requirements and sums

To get started,

go mod init

To add modules requirements and sums

go mod tidy
->go:finding module for package rsc.io/quote
->go:found rsc.io/quote in rsc.io/quote <version>

`Run the code to see the message generated by the function u're calling,

go run <file_name>

To install golang tools

sudo apt install golang-x-tools

Guidance on goland operands

godoc <operand> <operand>
# forexample:
godoc fmt Println
# Prints the use cases of fmt and Println in Go

### `Please don't communicate by sharing memory, share memory by communicating`

-------------

@Jaz-3-0