whyexis / head-first-go

Learning Go

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Head First Go

All web exercises are from the official website

Chapters

  1. Syntax Basics
  2. Conditionals and Loops
  3. Functions
  4. Packages
  5. Arrays
  6. Slices
  7. Maps
  8. Structs
  9. Defined Types
  10. Encapsulation and Embedding
  11. Interfaces
  12. Recovering from Failure
  13. Goroutines and Channels
  14. Automated Testing
  15. Web Apps
  16. HTML Templates
  17. Appendix A: Opening Files
  18. Appendix B: Six Things Not Covered

Verbs Formatting Cheatsheet

Verb Output
%f Floating-point number
%d Decimal integer
%s String
%t Boolean (true or false)
%v Any value (chooses an apppropriate format based on the supplied value's type
%#v Any value, formatted as it would appear in Go program code
%T Type of the supplied value (int, string, etc.)
%% A literal percent sign

About

Learning Go


Languages

Language:Go 97.0%Language:HTML 3.0%