Skip to content

Latest commit

 

History

History
65 lines (58 loc) · 1.34 KB

README.md

File metadata and controls

65 lines (58 loc) · 1.34 KB

Golang


Name Link
Official Site Go Official
Go Docs Site Learn Go

Golang Basic Example Code:


  • Types
  • Variables
  • Control Structures
  • If-Else Conditional Statements
  • Switch Case
    • fallthrough
  • Nested Conditional Statements
  • For, While Loop
    • Break
    • Pass
    • Continue
  • Arrays
  • Slice
  • Map
  • Basic Functions
    • Variadic Function
    • Make Function
    • Panic Function
    • Defer Function
    • Recover Function
    • Recursion Function
    • Closure Function
  • Pointers(*-->asterisk,&-->ampersand)
  • Structs and Interfaces
    • Structs
    • Methods
    • Interfaces
  • Concurrency
    • Goroutines
    • Channels
  • Packages
  • Core Packages
    • Strings
    • Input / Output
    • Files & Folders
    • Errors

GO & OOP:


    • Methods
    • Package Oriented Design
    • Type Embedding
    • Interfaces
  • Encapsulation
  • Message Passing
  • Inheritance
  • Composition
  • Polymorphism