# Learn GoLang
 
 
 
Go to file
Drew Bednar 630fe8ee45 Saving current work
coursera Update project structure
datastructures Saving current work
debugger Add debugger nodes and select chapter
go-gopher-cli Web app and cli tutorial
go-sql-database sqlite notes
go-web-app Save all the things
idiomatic_go Update project structure
learn_go_with_tests Saving current work
network_programming/tcp/ch3 Added additional comments
scratch_space Update project structure
tablewriter Mocking first pass
.gitignore Initial commit
Makefile.template Update project structure
README.md add coursera

README.md

Learn Golang

Following the O'Reilly "Learning Go: An Idiomatic Approach to Real-World Go Programming"

Notes

  • The use of ./... denotes a wildcard for tools like go fmt. It matches all .go files in the current directory and it's subdirectories.

Installing Revive

The legacy linter I guess is no longer supported but the revive project is a reasonable successor.

go install github.com/mgechev/revive@latest

Go Workspaces

Ok I don't really know about modules and workspaces, but to quiet the IDE I needed to add a go.work file to the root here, then a go.mod file to each subdir. We can figure this out later.