Go latest code crumbs
Logging in Go
Jul 14, 2023 by erik
Go has a built-in logging library, making it easy for developers to emit basic log messages. To use the standard logging facility of Go, you’ll first need to import the log package. In this example, log.Println writes the string "This...
Hello world in Go
Dec 1, 2022 by erik
This is the "Hello world" of the Go programming language. This crumb is used on the Go Tutorial...