xxxxxxxxxx
15
function setup() {
// がようしをよういする
createCanvas(windowWidth, windowHeight);
noStroke();
background(63);
}
function draw() {
// たくさんのまる
x = random(width);
y = random(height);
fill(random(31), random(255), random(190, 255));
circle(x, y, 10);
}