c.bauherren.ovh"I'm a big fan of civil disobedience" - I'm using this one in my next interview.

Table of Contents

- [Hello World](#hello-world)
- [Values](#values)
- [Constants](#constants)
- [For](#for)
- [If/Else](#if-else)
- [Switch](#switch)
- [Arrays](#arrays)
- [Slices](#slices)
- [Maps](#maps)
- [Functions](#functions)
- [Multiple Return Values](#multiple-return-values)
- [Variadic Functions](#variadic-functions)
- [Closures](#closures)
- [Recursion](#recursion)
- [Range over built in types](#range-over-built-in-types)
- [Pointers](#pointers)
- [Strings and Runes](#strings-and-runes)
- [Structs](#structs)
- [Methods](#methods)
- [Interfaces](#interfaces)
- [Enums](#enums)


</div>

By Example

Taken from gobyexample.com

Hello World

Values

Constants

Ouput

For

If/Else

Switch

Arrays

Output

Slices

Output

Practice