-
|
How does the scratch debugger work? |
Beta Was this translation helpful? Give feedback.
Answered by
Chiroyce1
Feb 7, 2022
Replies: 2 comments 2 replies
-
|
You mean our debugger addon? Which part of it? (It's very complicated) |
Beta Was this translation helpful? Give feedback.
1 reply
-
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
KevDev001
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment


Introduction to Debuggers
Debuggers are used for most programming languages, it helps programmers to find and fix bugs more easily. With the help of a debugger, you can step through individual lines of code, see the values of variables, etc, to try to find where an error/bug occurs.
Scratch was meant for beginners - so adding a debugger wasn't considered by the Scratch Team, so the wonderful people at Scratch Addons decided to make one.
To enable it, head over to the settings, search for "debugger" and make sure the switch is orange (click it if it isn't).
Demo of the Scratch Addons Debugger
To test it out, head over to fresh new Scratch project, and add some demo code like this —
Now, i…