https://www.processing.org/
desktop.github.com
atom.io
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array
Chapter 4 Variable
Their are 3 parts of a variable
Declare the variable
1)type name;
int ________;
int circleX;
2)Initialize the variable
circleX = 50;
3)Use the variable
cant start with a number, start with a lower case Data type
function calls
line(3,30,30,20)
rect(4,0,0)
assignment operation
________ = ________
x=random(100); 0 - 100
random(50,100) 50 -100
chapter 5
boolean expressions
relationship operators
< =
==
! = not equal together
task light up 4 quadrants ]
and &&
or ||