Checkpoint 18.5.1.
Test
drawWindow by drawing a window at -100, 0
drawWall and drawDoor procedures do not worry about where the shape is being drawn. We could put a goto into them so that they handle jumping to the right location to draw their shape. But, that would make it so they can only draw in one location. We will want to call the drawWindow procedure twice to draw two different windows. That will not work if drawWindow always jumps to a fixed location to do its drawing.
drawWindow defined. But, it is not tested yet. Add a test of the procedure to the end of the main part of the program.
drawWindow by drawing a window at -100, 0