Skip to content

Latest commit

 

History

History
47 lines (39 loc) · 836 Bytes

README.md

File metadata and controls

47 lines (39 loc) · 836 Bytes

Learning Go in IE

Introduction

This repository contains sample codes for introducing people to Go. C background is required for learning Go.

Outline

Go in the IE course consists of two major parts. one part is about Go itset and another part is Echo http server. Reviewing these source codes are useful for learning Go but their aren't enough.

Go

  1. Hello World
  2. Constants and Variables
  3. Calculation
  4. Conditions
  5. Loops
  6. Strings
  7. Arrays
  8. Slices
  9. Arrays and Slices
  10. Maps
  11. Structs
  12. Interfaces
  13. Pointers
  14. Structs with Pointers
  15. strconv
  16. Function with multiple-return
  17. Errors
  18. Concurrency
  19. Function Type
  20. Channels
  21. Pipelines
  22. Select
  23. JSON
  24. go.mod
  25. Packages

Echo

  1. Hello Echo
  2. Echo Handlers
  3. Request Binding
  4. Path Parameters
  5. Query Strings