An open API service indexing awesome lists of open source software.

https://github.com/callicoder/golang-tutorials

Golang Tutorials. Learn Golang from Scratch with simple examples.
https://github.com/callicoder/golang-tutorials

go go-examples go-tutorials golang golang-examples golang-tutorials

Last synced: 3 months ago
JSON representation

Golang Tutorials. Learn Golang from Scratch with simple examples.

Awesome Lists containing this project

README

        

# Golang Tutorials

### Getting Started

+ [Golang Installation, Setup, GOPATH, and Go Workspace](https://www.callicoder.com/golang-installation-setup-gopath-workspace/)

+ [Writing your first Go program](https://www.callicoder.com/golang-introduction-hello-world/)

### Variables, Constants, and Data Types

+ [Golang Variables, Zero Values, and Type inference](https://www.callicoder.com/golang-variables-zero-values-type-inference/)

+ [Golang Basic Types, Operators, and Type Conversion](https://www.callicoder.com/golang-basic-types-operators-type-conversion/)

+ [Working with Constants in Golang](https://www.callicoder.com/golang-typed-untyped-constants/)

### Control Structures

+ [Golang Control Flow Statements: If, Switch and For](https://www.callicoder.com/golang-control-flow/)

### Functions and Packages

+ [Introduction to Functions in Go](https://www.callicoder.com/golang-functions/)

+ [A beginners guide to Packages in Golang](https://www.callicoder.com/golang-packages/)

### Collection Types

+ [Working with Arrays in Golang](https://www.callicoder.com/golang-arrays/)

+ [Introduction to Slices in Golang](https://www.callicoder.com/golang-slices/)

+ [Golang Maps by Example](https://www.callicoder.com/golang-maps/)

### Pointers and Structs

+ [Playing with Pointers in Golang](https://www.callicoder.com/golang-pointers/)

+ [Golang Structs Tutorial with Examples](https://www.callicoder.com/golang-structs/)

### Methods and Interfaces

+ [Golang Methods Tutorial with Examples](https://www.callicoder.com/golang-methods-tutorial/)

+ [Golang Interfaces Tutorial with Examples](https://www.callicoder.com/golang-interfaces/)