Golang Personal Notes
Ctrlk
  • Introduction
  • Packages
  • Understanding Go Modules & Building Go Programs
  • Variables & Constants
  • Data Types & Null Values
  • Control Structures
  • Functions
  • Pointers
  • Structs and Methods
  • Interfaces
  • Arrays and Slices
  • Maps
  • Handling Long User Input
  • Loading Environment Variables
  • Databases MYSQL
  • fmt
  • os
Powered by GitBook
On this page

Introduction

This is my personal collection of Golang notes and examples. I'm putting this stuff here to keep track of what I'm learning. This is not a guide!

Table of Contents

  • Packages

  • Understanding Go Modules & Building Go Programs

  • Variables & Constants

  • Data Types & Null Values

  • Control Structures

  • Functions

  • Pointers

  • Structs and Methods

  • Arrays and Slices

  • Maps

  • Handling Long User Input

  • Loading Environment Variables

  • Databases MYSQL

  • fmt

    • fmt.Printf()

    • fmt.Sprintf()

    • fmt.Scan()

  • os

    • os.WriteFile()

    • os.ReadFile()

NextPackages

Last updated 1 year ago