A "break point" is a spot your debugger is instructed to stop your program at, so that you can look at your program's state. The term comes from IDEs where you can select a spot in your code and insert a break point.
Go to the line with the break point and remove the break point. Then compile and run as usual.