diff options
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -206,7 +206,8 @@ match shape { #### Loops ```zc // Range -for i in 0..10 { ... } +for i in 0..10 { ... } // Exclusive (0 to 9) +for i in 0..=10 { ... } // Inclusive (0 to 10) for i in 0..10 step 2 { ... } // Iterator/Collection |
