GoLang Practice

This repo includes my practice code for learning Go.

Most of the examples follow this Go Guide quii/learn-go-with-tests.

Tools I Use for Practice

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