golang-cheat-sheet
golang-cheat-sheet copied to clipboard
An overview of Go syntax and features.
Let me know if you are up for more pull request pls.
I have printed the pages, but there are no page numbers. In my opinion, the pdf and odt should be part of a release rather than being stored in git.
There is an example regarding pointers, but there is no comment that describes when to use pointers.
Hello, Please explain how one can replace map[string]interface{} functionality with an anonymous struct
Personally, I think adding a "comment" section will be better for this cheat sheet.
Hi, I'm new to go, but I can't compile source code from 'Functions As Values And Closures' chapter. I had to change: `outer_var = 444` to `outer_var := 444`, `func...