Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tmobaird/gopractice
https://github.com/tmobaird/gopractice
Last synced: 27 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/tmobaird/gopractice
- Owner: tmobaird
- Created: 2019-03-23T14:55:44.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-06-29T14:35:46.000Z (over 5 years ago)
- Last Synced: 2023-09-04T03:03:42.534Z (over 1 year ago)
- Language: Go
- Size: 6.84 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# GoLang Practice
This repo includes my practice code for learning Go.
Most of the examples follow this Go Guide [quii/learn-go-with-tests](https://github.com/quii/learn-go-with-tests).
### Tools I Use for Practice
- Guide: [Learn Go with Tests](https://github.com/quii/learn-go-with-tests).
- Editor: [GoLand](https://www.jetbrains.com/go/)### Useful Commands
- Run Tests: `go test`
- Run Tests w/ Code Coverage: `go test -cover`
- Run Tests w/ Benchmarks: `go test -bench=.`
- Start GoDoc Server on localhost:6060: `godoc -http=:6060`