Index
 
  The Wiring 1.0 _ALPHA_ Reference is a work in progress.
If you see any errors or have any comments, please write to: hbarragan [at] uniandes.edu.co
Name  

/* */ (multiline comment)

   
Examples  
/* 
   Turns HIGH and LOW a pin 
   alternating between them 
   and waits 100 milliseconds 
   on every alternation. 
*/ 
digitalWrite(1, HIGH); 
delay(100); 
digitalWrite(1, LOW); 

Description   Explanatory notes embedded within the code. Comments are used to remind yourself and to inform others about the function of your program. Multiline comments are used for large text descriptions of code or to comment out chunks of code while debugging applications. Comments are ignored by the compiler
   
Syntax  
/*
  comment
*/
   
Parameters  
comment   any sequence of characters

   
Usage   Web & Application
   
Related   // (comment)