# 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
- Variables and different types of declaration
- Multiple Declarations
- Zero values - default values of different types
- Constants (const)
- typed
- untyped
- IOTA
- Data types in Go
- predefined data types: int, uint, float, rune, byte, boolean, string
- composite: array, slice, map, and struct
Operators
- Arithmetic
- Logical
- Assignment
- Comparison
Program Flow
- If, else If, else..
- for, use for loop as while
- goto, break, continue, labels
- switch cases
Arrays
- declarations, operations, keyed elements
Slices
- declarations, basic operations, backing array, comparing slices, append(), copy()