The Correct Way to Use `go build`

When working with Go, it’s important to know the proper way to compile your programs to avoid common errors. Here are some tips on using the go build command effectively.

November 28, 2024 · 1 min · 163 words · Jack Yu

Using delve to Debug Golang Programs

When I first started writing Golang, I was always looking for a convenient debugging tool. Back then, I came across documentation about using gdb to debug and also tried delve,…

September 16, 2019 · 3 min · 613 words · Jack Yu

How Immediate is Golang's Panic

Let’s first look at the following code snippet:

July 26, 2018 · 2 min · 238 words · Jack Yu