xxxxxxxxxx
function setup() {
createCanvas(windowWidth, windowHeight);
strokeWeight(30);
}
function draw() {
background(230);
stroke(102);
line(90,0,70,height);
if(mouseIsPressed){
if(mouseButton==LEFT){
stroke(255);}
else{
stroke(0);}
line(0,100,width,100);
}
}