**이 페이지에서 알 수 있는 내용

- 변수 출력**

예제

void main(){            // main 함수는 dart코드를 실행할때 제일 먼저 실행되는 함수
print("Hello World!");  // Hello World를 출력해
}