Skip to content

Latest commit

 

History

History
11 lines (10 loc) · 222 Bytes

1-1.VARIABLES.hello_world.md

File metadata and controls

11 lines (10 loc) · 222 Bytes

Dart

기본 Hello world 출력하기

void main() {
  print("hello world");
}

hello world

이렇게 실행될 함수는 main에다가 넣어야 한다.
main이 없으면 컴파일을 할 수 없다