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.
- Host: GitHub
- URL: https://github.com/callicoder/golang-tutorials
- Owner: callicoder
- Created: 2018-01-19T14:22:33.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-01-21T07:07:36.000Z (over 2 years ago)
- Last Synced: 2025-03-29T16:07:58.809Z (3 months ago)
- Topics: go, go-examples, go-tutorials, golang, golang-examples, golang-tutorials
- Language: Go
- Homepage: https://www.callicoder.com/categories/golang/
- Size: 53.7 KB
- Stars: 404
- Watchers: 13
- Forks: 148
- Open Issues: 5
-
Metadata Files:
- Readme: Readme.md
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/)