Skip to content

Instantly share code, notes, and snippets.

@bluelion79
Created October 21, 2021 00:46
Show Gist options
  • Select an option

  • Save bluelion79/72b31dee9e539039795e2e56f7d22ae3 to your computer and use it in GitHub Desktop.

Select an option

Save bluelion79/72b31dee9e539039795e2e56f7d22ae3 to your computer and use it in GitHub Desktop.
A → B → C
void main() {
A(); //A함수 호출
B(); //B함수 호출
C(); //C함수 호출
}
void A() {
print('A'); //A 출력
}
void B() {
print('B'); //B 출력
}
void C() {
print('C'); //C 출력
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment