小林のⅮノ輔
function setup(){
createCanvas(400,400);
}
function draw(){
background(255,255,255)
//noStroke();
//strokeWeight(7);
//stroke(255,255,0);
fill(255,128,255);
//rect(random(0,400),random(0,400),50,70)
rect(100,100,100,200);
fill(11,27,80);
//circle(random(255),randdom(255),10);
circle(100,100,100);
}