https://github.com/ubugeeei/prajit
prajit
https://github.com/ubugeeei/prajit
Last synced: 3 months ago
JSON representation
prajit
- Host: GitHub
- URL: https://github.com/ubugeeei/prajit
- Owner: ubugeeei
- Created: 2022-11-26T02:41:03.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-05-09T23:20:53.000Z (about 2 years ago)
- Last Synced: 2025-03-24T19:50:01.778Z (3 months ago)
- Language: Rust
- Size: 35.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.
```