xxxxxxxxxx
26
function setup() {
createCanvas(400, 400);
background(240);
ellipse(width/2,height/2,20)
//width/2 and height/2 puts the circle in the middle
//width and height are variables
let ranNum = round(random(7,10));
//ranNum = round(ranNum)
print(ranNum);
// random with nothing in paranthesis gives u a num between 0 and 1
// random number with x in paranthesis gives u a num between 0 and x
//random number with (x,y) gives u a num between x and y
// round(x) rounds the variable
}
// function draw() {
// print(mouseX,mouseY);
// //mouse X and Y are variables
// let myNum;
// myNum = 4.5;
// myNum = width + myNum ;
// print(myNum);
// }