Implemented bitwise operations

This commit is contained in:
Eduard Urbach 2024-07-25 14:17:51 +02:00
parent f68c50247f
commit a7d8d6ae20
Signed by: eduard
GPG key ID: 49226B848C78F6C8
12 changed files with 287 additions and 5 deletions

View file

@ -150,12 +150,12 @@ This is what generates expressions from tokens.
- [x] `=`, `:=`
- [x] `+`, `-`, `*`, `/`, `%`
- [x] `+=`, `-=`, `*=`, `/=`, `%=`
- [ ] `&`, `|`, `^`
- [ ] `&=`, `|=`, `^=`
- [ ] `<<`, `>>`
- [ ] `<<=`, `>>=`
- [x] `&`, `|`, `^`
- [x] `&=`, `|=`, `^=`
- [x] `==`, `!=`, `<`, `<=`, `>`, `>=`
- [x] `&&`, `||`
- [ ] `<<`, `>>`
- [ ] `<<=`, `>>=`
### Architecture