https://github.com/thutasann/go-kickoff
GoLang KickOff
https://github.com/thutasann/go-kickoff
Last synced: 4 months ago
JSON representation
GoLang KickOff
- Host: GitHub
- URL: https://github.com/thutasann/go-kickoff
- Owner: thutasann
- Created: 2023-10-21T03:07:14.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-10-27T16:32:04.000Z (over 1 year ago)
- Last Synced: 2025-01-09T02:22:47.902Z (5 months ago)
- Language: Go
- Homepage:
- Size: 18.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# GoLang Kick off
This is the repo where I start digging into GoLang.
Here is the Course Link. [Utemy Course](https://www.udemy.com/course/getgoing/learn/lecture/15679926#overview)
## Available Scripts
### Install Go
Install `Go` in your machine [Here](https://go.dev/doc/install)
### Change dir
```
cd src
```### Run Go
```bash
go run main.go
```### Build Go
```bash
go build main.go
```### Format Go
```bash
go fmt main.go
```