Keyword | Definition |
---|---|
breakpoint | a debugging tool where you can force the program to pause when it reaches a particular line of code |
debug | find and fix error messages |
error message | description of what went wrong with a program |
IDE | integrated development environment: a tool which lets you write, run and debug your code |
line number | part of an error message which gives an indication of where the error might be close to |
step | run one line of code at a time |
watch | view the value stored in a variable as the program runs |