void main() { A(); //A함수 호출 B(); //B함수 호출 C(); //C함수 호출 } void A() { print('A'); //A 출력 } void B() { print('B'); //B 출력 } void C() { print('C'); //C 출력 }