Parse some more operations

This commit is contained in:
2026-02-20 14:22:26 +11:00
parent b98487caaf
commit cb13200545
2 changed files with 47 additions and 9 deletions

View File

@@ -17,20 +17,20 @@ bash build.c
- [x] bool
- [x] Lex keywords
- [x] Ignore comments (//, /**/, #)
- [ ] Lex delimiters
- [x] Lex delimiters
- [x] ()
- [x] {}
- [x] .
- [x] :
- [x] ,
- [ ] ==, =
- [ ] >, >=
- [ ] <, <=
- [ ] !, !=
- [ ] +, +=, ++
- [ ] -, -=, --
- [ ] *, *=
- [ ] /, /=
- [x] ==, =
- [x] >, >=
- [x] <, <=
- [x] !, !=
- [x] +, +=, ++
- [x] -, -=, --
- [x] *, *=
- [x] /, /=
- [ ] Lex types
- [x] Basic types (int, double, string, bool, char)
- [ ] Advanced types (fun(...), template(...), object(...))