Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/tmobaird/gopractice


https://github.com/tmobaird/gopractice

Last synced: 27 days ago
JSON representation

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`