xxxxxxxxxx
function setup() {
createCanvas(600, 600);
background(random(256), random(256), random(256));
}
function draw() {
textSize(30);
text("Hej Lilla My", 150, 150);
fill(0, 0, 200)
strokeWeight(3)
stroke(0, 0, 58)
rect(200, 200, 50,50);
fill(0, 1, 20)
ellipse(300, 300, 100, 70);
fill(80, 100, 20)
line(50,50, 400,400);
fill(0, 3, 0);
circle(mouseX, mouseY, 70);
}