Notes and practice code
[[TOC]]
A series of simple tools, such as web clients and web servers. The gif bellow was generated and served using the program ./go-programming-language/ch1/lissajous.go
On should not specify the direct file path when building something. Point it to the module instead the directory !
go build ./cmd/nvim-man/
The same applies to tests, always specify a directory. One might consider changing the directory into the module itself and run the tests from there.
go test -v ./utilities_tests/
- gobyexample https://gobyexample.com/