To step through these breakpoints, you can use one of the following commands:
Step-in (step or s): Step into the sub-expressions.
Step-out (finish or f): Complete execution of the current expression and return the result to the parent.
Step-over (next or n): Continue to completion of the current expression, stepping over sub-expressions.
Continue (continue or c): Continue execution until hitting a breakpoint or completing execution.
Using the continue command, the breakpoint you set in the double function will trigger twice due to two count-up calls, which enables you to do variable and map analysis.