Improved modulo tests
This commit is contained in:
parent
60b8ff1308
commit
b8900b518a
15
README.md
15
README.md
@ -147,16 +147,15 @@ This is what generates expressions from tokens.
|
||||
|
||||
### Operators
|
||||
|
||||
- [x] `=`
|
||||
- [x] `+`, `-`, `*`, `/`
|
||||
- [x] `+=`, `-=`, `*=`, `/=`
|
||||
- [x] `==`, `!=`, `<`, `<=`, `>`, `>=`
|
||||
- [x] `&&`, `||`
|
||||
- [ ] `%`
|
||||
- [ ] `<<`, `>>`
|
||||
- [ ] `<<=`, `>>=`
|
||||
- [x] `=`, `:=`
|
||||
- [x] `+`, `-`, `*`, `/`, `%`
|
||||
- [x] `+=`, `-=`, `*=`, `/=`, `%=`
|
||||
- [ ] `&`, `|`, `^`
|
||||
- [ ] `&=`, `|=`, `^=`
|
||||
- [ ] `<<`, `>>`
|
||||
- [ ] `<<=`, `>>=`
|
||||
- [x] `==`, `!=`, `<`, `<=`, `>`, `>=`
|
||||
- [x] `&&`, `||`
|
||||
|
||||
### Architecture
|
||||
|
||||
|
@ -29,7 +29,16 @@ main() {
|
||||
sys.exit(1)
|
||||
}
|
||||
|
||||
if 256 % 10 != 6 {
|
||||
x := 256
|
||||
x %= 100
|
||||
|
||||
if x != 56 {
|
||||
sys.exit(1)
|
||||
}
|
||||
|
||||
x %= 10
|
||||
|
||||
if x != 6 {
|
||||
sys.exit(1)
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user