$ go debug path/to/elf/file
(dlv) break package/function.go:123
(dlv) print variable
(dlv) stack
(dlv) nextThis will advance the debugger to the next line. The package library used by Go debug is `delve`. It is a debugger for the Go programming language that is used by Go debug. It provides a range of debugging features, including remote debugging and conditional breakpoints.