Wiki source code of Function Ordering Example

Version 1.1 by chrisby on 2023/12/06 09:07

Show last authors
1 ```
2 func_1() {
3 func_2()
4 func_3()
5 }
6
7 func_2() {
8 func_4
9 }
10
11 func_4() {
12 ...
13 }
14
15 func_3(){
16 ...
17 }
18 ```