Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
</head>
<body>
  <script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.5.5/p5.min.js"></script>
</body>
</html>
 
function setup() {
  createCanvas(600,600);
  background(85);
}
function draw() {
  if (mouseIsPressed) {
    fill(255);
    noStroke();
    rect(mouseX, mouseY, 5, 5);
  }
}
Output 300px

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
DarrylDiaspro
0viewers