Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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|
- Host: GitHub
- URL: https://github.com/0xjonaseb11/go_lang
- Owner: 0xJonaseb11
- License: mit
- Created: 2023-12-03T18:40:02.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-04-08T16:36:49.000Z (10 months ago)
- Last Synced: 2024-05-21T13:25:36.384Z (8 months 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