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

https://github.com/thutasann/go-kickoff

GoLang KickOff
https://github.com/thutasann/go-kickoff

Last synced: 4 months ago
JSON representation

GoLang KickOff

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