Compare commits

..

1 Commits

Author SHA1 Message Date
luciano ed73337812 add bitwise to readme 2026-03-15 14:10:05 -07:00
2 changed files with 9 additions and 1 deletions

1
.gitignore vendored
View File

@ -1 +0,0 @@
calc

View File

@ -22,6 +22,15 @@ calc> (2+2)*(2+2)
calc>
```
Bitwise operations supported too:
```
calc> 2|2
2
calc>
```
Notice how we print the output with a bit of spacing followed by a new prompt.
**Switching Formats**