Skip to content

Commit

Permalink
Docs: add a section for "For loops" in README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
mrunix00 committed Jul 9, 2024
1 parent 7699c74 commit 72cb23d
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,12 @@ while x < 42 {
// do something
};
```
#### For loops
```c
for define i = 0; i < 20; i++ {
// do something
};
```

## Roadmap
- [x] Lexer
Expand All @@ -37,7 +43,7 @@ while x < 42 {
- [x] Functions
- [x] Conditions
- [x] While loops
- [ ] For loops
- [x] For loops
- [ ] Arrays
- [ ] Strings
- [ ] Hashmaps
Expand Down

0 comments on commit 72cb23d

Please sign in to comment.