Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/0xjonaseb11/go_lang

Go Programming Learning| Beginner To Expert|
https://github.com/0xjonaseb11/go_lang

apis backend blockchain golang learn web3

Last synced: 6 days ago
JSON representation

Go Programming Learning| Beginner To Expert|

Awesome Lists containing this project

README

        

# 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,`

```sh
go mod init
```

`To add modules requirements and sums`

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

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

```sh
go run
```

`To install golang tools`

```sh
sudo apt install golang-x-tools
```

### `Guidance on goland operands`

```sh
godoc
# 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