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  

void

   
Examples  
void setup() { 
  pinMode(0, OUTPUT); 
} 
 
void loop() { 
  digitalWrite(0, HIGH); 
} 

Description   Keyword used indicate a function returns no value. Each function must either return a value of a specific datatype or use the keyword void to specify the function returns nothing.

함수가 리턴할 때 아무것도 전달하지 않음을 나타내는 키워드 입니다. 모든 함수는 지정된 데이터형의 값을 반환하거나 void 를 사용하여 반환할 값이 없음을 지정합니다. 

   
Syntax  
void function {
  statements
}
   
Parameters  
function   any function that is being defined or implemented

statements   any valid statements

   
Usage   Application