Posts tagged with golang
-
Golang Build - A Complete Guide
Learn the art of building Go programs with the go build command. In this article, we explore the `go build` command in detail.
-
A Guide to INI in Golang
Learn how to parse and modify INI files in Golang using the popular Golang INI package. Step-by-step guide with code examples included.
-
A Guide to TOML in Golang
Learn about working with TOML in GoLang with BurntSushi/toml and pelletier/go-toml. Explore decoding errors, advantages, and differences between the two.
-
How to Read and Write YAML in Golang
Learn how to parse YAML files in Go using the "gopkg.in/yaml.v3" package. Includes examples with struct tags and the yaml.Node struct.
-
A Guide to Closure Functions in Go
Learn about Golang closures: their syntax, scope, and lifetime of variables, creating higher-order functions, common use cases, and best practices.