Changes for page Function Ordering Example
Last modified by chrisby on 2024/03/04 20:47
Summary
-
Page properties (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -1,5 +3,3 @@ 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`. 2 - 3 3 ``` 4 4 func_1() { 5 5 func_2() ... ... @@ -8,7 +8,6 @@ 8 8 9 9 func_2() { 10 10 func_4 11 - ... 12 12 } 13 13 14 14 func_4() { ... ... @@ -19,4 +19,3 @@ 19 19 ... 20 20 } 21 21 ``` 22 -