소개(HelloWorld:클래스)
var command = ‘CLOSED’; switch (command) { case ‘CLOSED’: executeClosed(); continue nowClosed; // Continues executing at the nowClosed label. nowClosed: case ‘NOW_CLOSED’: // Runs for both CLOSED and NOW_CLOSED. executeNowClosed(); break; } void main() { print(‘Hello, World!’); } void main(List<String> arguments) { print(arguments); } main함수부터 시작해서 반환값이 없으면 void형이다. 인쇄 기능은 콘솔에 텍스트를 표시합니다. main … Read more