xxxxxxxxxx
24
//A Night Sky
function setup() {
createCanvas(400, 400);
}
function draw() {
background('#141852'); //Dark Blue
circle (335, 70 ,100); //It's a moon
//These are stars
circle (200, 70 ,10);
circle (125, 50 ,10);
circle (50, 70 ,10);
//A mountain
triangle(30, 75, 58, 20, 86, 75);
}