Difference between revisions of "Processing"

From Wikicliki
Jump to: navigation, search
Line 1: Line 1:
 
"[http://processing.org/ Processing] is an open source programming language and environment for people who want to program images, animation, and interactions."
 
"[http://processing.org/ Processing] is an open source programming language and environment for people who want to program images, animation, and interactions."
 +
 +
== Notes ==
 +
 +
* int - integer. they can be signed (neg and positive) or unsigned (all positive) values. unsigned values can hold larger values than signed values because the unsigned values have to have an extra bit in front to store whether the number is positive or negative.
 +
* string - sequence of characters
 +
* byte - datatype for bytes 8 bits of information storing numerical values
 +
 
[[Category:Programming]]
 
[[Category:Programming]]

Revision as of 14:00, 9 April 2010

"Processing is an open source programming language and environment for people who want to program images, animation, and interactions."

Notes

  • int - integer. they can be signed (neg and positive) or unsigned (all positive) values. unsigned values can hold larger values than signed values because the unsigned values have to have an extra bit in front to store whether the number is positive or negative.
  • string - sequence of characters
  • byte - datatype for bytes 8 bits of information storing numerical values