Created
October 21, 2021 00:46
-
-
Save bluelion79/72b31dee9e539039795e2e56f7d22ae3 to your computer and use it in GitHub Desktop.
A → B → C
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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