Changes for page Function Ordering Example

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

From version 1.2
edited by chrisby
on 2023/12/06 09:11
Change comment: There is no comment for this version
To version 1.5
edited by chrisby
on 2024/03/04 20:47
Change comment: There is no comment for this version

Summary

Details

Page properties
Content
... ... @@ -1,4 +1,4 @@
1 -`func_1` is called first, so it is at the top. Next is `func_2`. Since `func_4` is called before `func_3`, its definition is above the definition of `func_3`.
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`, the definition of `func_4` is above the definition of `func_3`.
2 2  
3 3  ```
4 4  func_1() {
... ... @@ -19,4 +19,3 @@
19 19   ...
20 20  }
21 21  ```
22 -