Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sahilrajput03/learn_go
https://github.com/sahilrajput03/learn_go
Last synced: 16 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/sahilrajput03/learn_go
- Owner: sahilrajput03
- Created: 2022-04-03T15:17:13.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-02-23T01:09:06.000Z (almost 2 years ago)
- Last Synced: 2024-11-09T17:58:14.620Z (about 2 months ago)
- Language: Go
- Size: 7.81 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# learn_go
## Quick Links
- Official Go playground: [Click here](https://go.dev/play/)
## Find where the packages would be installed with `go env` command:
```bash
go env | grep PATH
```## Diffferent go command ?
```bash
go help
```- most used
src: https://youtu.be/3ry1Q7feLxA
```bash
# build app
go buildgo get
#Run app
go run
```## how did i go?
```bash
md app && cd app
go mod init app1
go get -u github.com/gin-gonic/gin# run app
go run main.go
```## What is := in go ?
Amazing -> Source: https://stackoverflow.com/a/45654233/10012446