Let's say I put a breakpoint in the first line.
I see no option to simply skip the 2nd line and jump straight to the print statement.
Is there any hidden option? If not, what is the most non-intrusive way?
Commenting out the lines I don't wanna run is not elegant.
a = 3
a = 4
print(a)