Index
 
  Reference for Wiring 1.0 (ALPHA) 0017+. If you have a previous version, use the reference included with your software. If you see any errors or have any comments, let us know.
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)