View the source and add drawing code to the drawCode() function
xxxxxxxxxx
/**
Write your code here. These are the current commands:
fill(color);
Sets the color so that all drawing afterwards will be that color.
There are some basic ones defined under the "core" tab.
Example: fill(blue);
point(x,y);
Draws a point at the location x,y. This means the square at that
location will be filled with the current fill value.
Example: point(2,2);
drawLine(x1,y1, x2,y2);
Draws a point at every square from the location x1,y1 to x2,y2
Example: drawLine(1,2, 10, 9);
**/
void drawCode()
{
//An example that draws a 'T' shape:
fill(pink);
point(1,1);
/*
drawLine(2,2,8,2);
fill(lightblue);
drawLine(5,3,5,8);
fill (red);
point(5,2);
*/
}