Changes for page Function Ordering Example

Last modified by chrisby on 2024/03/04 20:47

From version 1.1
edited by chrisby
on 2023/12/06 09:07
Change comment: There is no comment for this version
To version 1.4
edited by chrisby
on 2023/12/06 09:18
Change comment: There is no comment for this version

Summary

Details

Page properties
Content
... ... @@ -1,3 +1,5 @@
1 +Say `func_1` is called first, so it is at the top. Next is `func_2`. Since `func_4` is called before `func_3`, so its definition is above the definition of `func_3`.
2 +
1 1  ```
2 2  func_1() {
3 3   func_2()
... ... @@ -6,6 +6,7 @@
6 6  
7 7  func_2() {
8 8   func_4
11 + ...
9 9  }
10 10  
11 11  func_4() {