Say I have a variable called @test_var
And I have hundred lines of code using this variable
On debugging I need to give n for next step and @test_var to check the value
Can I do both in single command (i.e) print the value of a variable on every step ?
You are looking for
After that,
@test_varwill be printed every time the debugger stops.