Follow instructions here
start debugger through command dlv debug
define breakpoint b day46/debug.go:6
let's start debugging c
navigate through lines using s
until line 11
print variable p greetingArg
learn more comands typing help
type q
to exit
https://github.com/jodosha/vim-godebug
open file using neovim nvim debug.go
:GoToggleBreakpoint
to set breakpoint (line 6 is recommended)
:GoDebug
to start debugging
navigate through lines using s
until line 11
print variable p greetingArg
learn more comands typing help
type q
to exit