var ball = {
x:300,
y:200,
xspeed:4,
yspeed:-3
}
function setup() {
createCanvas(400, 400);
function draw() {
background("white");
move();
bounce();
display();