What does this code do?
void draw() { background(254, 216, 255); if ((mouseX > x) && (mouseX < x+w) && (mouseY > y) && (mouseY < y+h)) { fill(171, 90, 240); } else { fill(24, 118, 198); } rect(x, y, w, h); }
Create a function called print.
public static void print (Object s) { System.out.println(s); }
Print 10 different things with your print function. Then put everything in your PasteBin.
Read about objects. They are important. Try this code in Processing.
http://processing.org/tutorials/objects/