Updated Fancade Text Code Format.md (markdown)
commited
commit
eb2eb8c38536a90587cc764b062f3240ff503ee6
... | ... | @@ -29,7 +29,7 @@ Basic Math Operators |
29 | 29 | |
30 | 30 | Control |
31 | 31 | |
32 | if |
|
32 | ***if*** |
|
33 | 33 | ``` |
34 | 34 | • If (condition) { function } else { function } ; |
35 | 35 | ``` |
... | ... | @@ -43,12 +43,12 @@ if |
43 | 43 | |
44 | 44 | |
45 | 45 | |
46 | Loop |
|
46 | ***Loop*** |
|
47 | 47 | ``` |
48 | 48 | • Loop[ start , end ]( ) |
49 | 49 | { function ; return ( counter ) ; } ; |
50 | 50 | ``` |
51 | or |
|
51 | **or** |
|
52 | 52 | ``` |
53 | 53 | • Num start = 0 ; |
54 | 54 | While (start < end) { start++ , function } ; |