-
Notifications
You must be signed in to change notification settings - Fork 1
Decoding Code
mimiyin edited this page Feb 2, 2016
·
2 revisions
- Identify the blocks of code. And sub-blocks of code.
- Provide a 1-sentence description of each block.
- What is the essence of each block?
- Don't get bogged down in details.
- Where is the "heart" of the sketch?
- Identify the output.
- Is this drawing something?
- Making sounds?
- Printing out text?
- Identify what's changing.
- What are the variables?
- Where are they declared?
- Where are they initialized?
- Where are they updated?
- Where are they used?
- What variables are dependent on other variables?
- What can I change to immediately start playing with this sketch?