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

https://github.com/iljapavlovs/go-examples

Go sample project
https://github.com/iljapavlovs/go-examples

go

Last synced: 30 days ago
JSON representation

Go sample project

Awesome Lists containing this project

README

        

### Running Go Program

#### Just Run code

```bash
go run .go
```

#### Compile code into executable in dir

```bash
go build
```

will create binary file with the name of folder

run executable

```bash
./go-examples
```

#### Executable put into bin folder

```go install```

### Resources

*
*