This app lets you draw on the screen to make cool 3D effects. Dragging on the screen draws with hundreds of little cubes. Tapping a cube makes it pop and disappear.
Line 1 creates a new block of code called drag() which tells the app what to do when you drag your cursor on the screen.
Line 2 puts a blue cube on the screen and assigns it the name "ink". The cube appears precisely where your cursor is touching the screen.
Line 3 tells "ink" (which is the cube) to pop when it's tapped.
Line 4 uses a curly bracket } to indicate that this is the end of the drag() function which started on line 1.
Line 5 puts a background image of graph paper on the screen.