I am trying the delve debugger to debug the go code. I want to add the new feature in it that will print the line of code as executed. I come up with the solution using the "next" and "continue" cmd but it fails if I am calling another function in the main function. Here is the code: link
I know it is not clean code but working for simple work. How do I extend my work or start from scratch to print the line of code that as executed when calling the custom function in the main function?
Any help will be helpful. Thanks you
