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: about 1 month ago
JSON representation
Go Programming Learning| Beginner To Expert|
- Host: GitHub
- URL: https://github.com/0xjonaseb11/go_lang
- Owner: 0xJonaseb11
- License: mit
- Created: 2023-12-03T18:40:02.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-08T16:36:49.000Z (about 2 years ago)
- Last Synced: 2025-01-20T14:58:42.425Z (over 1 year ago)
- Topics: apis, backend, blockchain, golang, learn, web3
- Language: Go
- Homepage:
- Size: 25.4 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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