Skip to content

Commit 4113e42

Browse files
authored
Merge pull request #28 from Waxer59/update-readme
update README
2 parents fdb79c5 + 166438b commit 4113e42

1 file changed

Lines changed: 5 additions & 7 deletions

File tree

README.md

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ Pika, or Pikalang, is a programming language designed to be simple, efficient an
2323
- [Comments](#comments)
2424
- [Single-line Comments](#single-line-comments)
2525
- [Multi-line Comments](#multi-line-comments)
26-
- [For Loop](#for-loop)
27-
- [Syntax](#syntax-1)
26+
- [Loops](#loops)
27+
- [For Loop](#for-loop)
2828
- [While Loop](#while-loop)
2929
- [Break Statement](#break-statement)
3030
- [Continue Statement](#continue-statement)
@@ -345,13 +345,11 @@ var x = 10;
345345

346346
> Remember that comments are for humans reading the code, so write clear and concise comments that enhance code readability and maintainability.
347347
348-
### For Loop
348+
### Loops
349349

350-
The `for` loop is a control flow statement in programming that allows you to repeatedly execute a block of code based on a specified condition. It is commonly used to iterate over a collection of items or perform a certain task a specific number of times.
351-
352-
#### Syntax
350+
#### For Loop
353351

354-
The syntax for a `for` loop is as follows:
352+
The `for` loop is a control flow statement in programming that allows you to repeatedly execute a block of code based on a specified condition. It is commonly used to iterate over a collection of items or perform a certain task a specific number of times.
355353

356354
```go
357355
for initialization; condition; post {

0 commit comments

Comments
 (0)