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  

true

   
Examples  
boolean b = true; 
if(b == true) { 
  digitalWrite(48, HIGH);  // Turn ON the I/O board LED 
} else { 
  digitalWrite(48, HIGH); 
} 

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

논리적인 값 "true" 를 표시하는 예약어 입니다. 단지 부울리안 변수형에서 true 를 저장할 수 있습니다.

   
Syntax  
false
   
Usage   Web & Application
   
Related   false
boolean