Skip to content

Latest commit

 

History

History
60 lines (42 loc) · 1.14 KB

README.md

File metadata and controls

60 lines (42 loc) · 1.14 KB

Introduction to Golang

  • Basics
  • Structures
  • Arrays, Slices and Maps
  • Concurrency
  • HTTP Server Example

Basics

  • Static Typed
  • Garbage Collected
  • main
  • variables and functions
  • packages and imports
  • go toolchain

Structures

  • Declaration, Initialization and Composition
  • Receivers
  • Interfaces
  • Serialization

Arrays, Slices and Maps

  • Arrays
  • Slices
  • Maps

Concurrency

  • goroutines
  • WaitGroup
  • (RW)Mutex
  • Channels

HTTP Server Example

  • Hello Server

References