minor: add bitwise to readme #2

Open
lremes wants to merge 1 commits from lremes/update-readme into main
1 changed files with 9 additions and 0 deletions

View File

@ -22,6 +22,15 @@ calc> (2+2)*(2+2)
calc>
```
Bitwise operations supported too:

might also be good to add a section that shows you can do cross-format calculations, like 0xf+1 will actually correctly resolve

might also be good to add a section that shows you can do cross-format calculations, like `0xf+1` will actually correctly resolve

or actually probably better in another PR

or actually probably better in another PR
```
calc> 2|2
2
calc>
```
Notice how we print the output with a bit of spacing followed by a new prompt.
**Switching Formats**