Variables, Data types, Operators, and Value Assignments

Today we learned about different data-types and variables in Processing.

Data Types

The following data types each represent unique ways of storing data in your programs.
Integer
Float
String
Char
Boolean
Color

Debugging / Output
// print information to the console
println("Text printed to the console");

Processing Exercises and Websites

learningprocessing.com
openprocessing.org

Exercises
1. Get current color from an image under mouse, and assign it to a variable that you can use.

2. Find an abstract image or piece of art that you find interesting. Re-create the image in code with shapes, lines, and color.