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  

false

   
Examples  
boolean b = false; 
if(b == false) { 
  digitalWrite(48, HIGH);  // Turns on the I/O board LED 
} else { 
  digitalWrite(48, LOW); 
} 

Description   Reserved word representing the logical value "false". Only variables of type boolean may be assigned the value false

논리값"false"를 나타내는 예약어 입니다. 단지 부울리안 변수형에서만 지정할수 있습니다.

   
Syntax  
false
   
Usage   Web & Application
   
Related   true
boolean