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
- Host: GitHub
- URL: https://github.com/iljapavlovs/go-examples
- Owner: iljapavlovs
- Created: 2019-12-17T14:16:58.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-12-11T03:12:41.000Z (5 months ago)
- Last Synced: 2025-02-09T02:26:08.745Z (3 months ago)
- Topics: go
- Language: Go
- Size: 2.33 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
*
*