Categorygithub.com/thatbackendguy/go-lang-practise
repository
0.0.0-20240611044128-9ecbffb0885d
Repository: https://github.com/thatbackendguy/go-lang-practise.git
Documentation: pkg.go.dev

# Packages

No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author

# README

Go Lang Practise

Basics of Go

  1. Variables and different types of declaration
  2. Multiple Declarations
  3. Zero values - default values of different types
  4. Constants (const)
    • typed
    • untyped
  5. IOTA
  6. Data types in Go
    • predefined data types: int, uint, float, rune, byte, boolean, string
    • composite: array, slice, map, and struct

Operators

  1. Arithmetic
  2. Logical
  3. Assignment
  4. Comparison

Program Flow

  1. If, else If, else..
  2. for, use for loop as while
  3. goto, break, continue, labels
  4. switch cases

Arrays

  • declarations, operations, keyed elements

Slices

  • declarations, basic operations, backing array, comparing slices, append(), copy()