An open API service indexing awesome lists of open source software.

https://github.com/ubugeeei/prajit

prajit
https://github.com/ubugeeei/prajit

Last synced: 3 months ago
JSON representation

prajit

Awesome Lists containing this project

README

        

# prajit
## Usage
### inputs command line arguments
```sh
$ cargo run "1 + 2 * 3"
# 7

$ cargo run "1 + 2 * 3" "1 + 2 * 3" "1 + 2 * 3"
# 7 7 7
```

### interactive mode
```sh
$ cargo run -- -i
# or
$ cargo run -- --interactive

> 1 + 1
# 2
> 5 * 2
# 10
> exit
# bye.
```