Overview
Students practice reading and using functions which produce images, and learn about refactoring code to change the format, but not the result
Learning Objectives
Evidence Statementes
Product Outcomes
Students refactor existing code to make an emoji image
Materials
Preparation
The Robot Emoji file preloaded on student machines
The Emoji Refactoring file preloaded on student machines
refactoring code. This means taking code that is already working and complete, and cleaning it up: adding comments, removing unnecessary expressions, and generally making their code more readable and useable by others. Refactoring does not change the behavior of the program, only the appearance of the code. For instance, a messy expression like: could be refactored into: Both expressions return the same value, but the second is much more readable. Refactoring can involve using existing functions (such as num-sqr in the example above) or writing new functions to perform small tasks.
One of the most common tasks software developers find themselves performing is- Open the Robot Emoji file and press ’Run’. In this file, there are two versions of the same program written by different students.
Take a look at the definitions in this file, and, with your partner, discuss what you notice. Which student’s code is easiest to read and understand? Which formatting do you like better? If you were collaborating on a project with another programmer, which version of this code would you rather to receive, and why?
Discus with students the differences in documentation, formatting, and organization of the two versions of the emoji code.
- Next, we’re going to practice refactoring an existing program that draws an image.
Open the Emoji Refactoring file and click "Run".
This code draws an image of a simple face emoji. Without changing the final image produced, can you see any opportunities to edit the code to make it more readable?Refactor the code provided. This could include adding comments, more space betwen expressions, or simplifying the existing expressions. Once finished, write one more expression to create a smaller (emoji-sized) version of the original image.
This activity can be done individually or as a class, with students giving suggestions for refactoring code projected at the front of the room. Once the refactoring is completed, students can practice using image functions to create an emoji of their own.