Language \ Environment \ Comparison
 
Index
 
  The Processing 1.0 _ALPHA_ Reference is a work in progress.
If you see any errors or have any comments, please write to: reas at groupc.net
Name  

// (comment)

   
Examples  
// Draws two lines which divides the window 
// into four quadrants 
line(0, 50, 100, 50);  // Draw the horizontal line 
line(50, 0, 50, 100);  // Draw the vertical line 

Description   Explanatory notes embedded within the code. Comments are used to remind yourself and to inform others about the function of your program. Single-line comments are signified with the // characters. Comments are ignored by the compiler.
   
Syntax  
// comment
   
Parameters  
comment   any sequence of characters

   
Usage   Web & Application
   
Related   /* */ (multiline comment)
   
© 2004 - 2001 Massachusetts Institute of Technology and Interaction Design Institute Ivrea
Processing is an open project initiated by Ben Fry and Casey Reas