Chapter 4 - Tools/4.2 Debugging.md
If you've never used a debugger before you should go try it out. It's important that you know how to use them. Here is a crash course in debugging.
SayHello. If I step over the function call on line 10 I will not be brought into the SayHello function and I will instead step directly to line 11.Those are the basics of debugging. It's quite a simple process but it's extremely important and helpful to developers and us reverse engineers.