Check your grade and email it to me
Subject: My grade is [enter grade]
Go to this link and create Exploding Sun:
Hint:
noStroke();
// the beautiful blue sky
background(82, 222, 240);
// the starting size for the sun
var sunSize = 30;
draw = function() {
sunSize=sunSize+1;
// The sun, a little circle on the horizon
fill(255, 204, 0);
ellipse(200, 298, sunSize, sunSize);
// The land, blocking half of the sun
fill(76, 168, 67);
rect(0, 300, 400, 100);
};