Home
About
  • Learning Golang: Packages

    Aug 16, 2020 golang

    This is part 3 of my journey learning Golang. Package declaration The first line of a Go source file is the “package declaration”, defined by the package keyword. This serves a few purposes: It provides a structure for grouping related source files. It provides a mechanism for code reuse. It differentiates …

    Read More
  • Learning Golang: Compiling and running Go programs

    Aug 16, 2020 golang

    This is part 2 of my journey learning Golang. Compiling Go programs An individual Go source file can be compiled with the go build command: 1go build {filename}.go That will produce an executable binary file if the source’s package is main (see Part 3 for more on packages). The resulting binary can be executed …

    Read More
  • Learning Golang: Getting Started

    Aug 16, 2020 golang

    This is part 1 of my journey learning Golang. The Go programming language (Golang) is becoming more relevant by the day. It is, famously, the language of the Docker and Kubernetes projects. Both have had a huge impact on how companies run applications, and I develop for them on a daily basis. Golang is also seeing …

    Read More
    • ««
    • «
    • 1
    • 2
    • 3
    • »
    • »»

Fernando Correia

Principal Software Engineer at Domino Data Lab. We're hiring!

Read More

Featured Posts

Recent Posts

  • My origin story: TK85
  • Learning Golang: Random numbers
  • Learning Golang: Scoped shorthand variable declaration
  • Learning Golang: switch
  • Learning Golang: Logical operators
  • Learning Golang: if and else
  • Learning Golang: Scan, Scanln and Scanf
  • Learning Golang: Sprint, Sprintln, Sprintf

categories

LEARNING-GOLANG 23 PERSONAL 1

tags

GOLANG 23 BLOGGING 3 DNS 1 GITHUB-PAGES 1 ORIGIN 1

Copyright © 2025 Fernando de Alcantara Correia. Licensed under the Creative Commons Attribution 4.0 International (CC BY 4.0) License.