Write your First Program



Unit 1: Progress

 19%

 

 

Get started with Processing by clicking here to load the editor

 

Copy and paste the code below into Processing to load exactly like I show in the video above.

 

function setup() {
  createCanvas(400, 400);
}

function draw() {
  background(220);
  
  ellipse(200,200,100,100);
  
  
}

 

 

Code Sample


Get started with Processing by clicking here to load the editor

 

Check out the student example, the Moody Ninja

Also, check out the student example, Josh's Water Bottle

 

Previous Next