xxxxxxxxxx
14
function setup() {
background('pink');
// Draw a heart.
fill('red');
noStroke();
circle(67, 67, 20);
circle(83, 67, 20);
triangle(91, 73, 75, 95, 59, 73);
// Add a general description of the canvas
// and display it for debugging.
describe('A pink square with a red heart in the bottom-right corner.', LABEL);
}