https://github.com/xor-bits/yafc
https://github.com/xor-bits/yafc
Last synced: 9 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/xor-bits/yafc
- Owner: xor-bits
- Created: 2022-03-14T14:19:15.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-02-07T17:20:19.000Z (over 3 years ago)
- Last Synced: 2025-02-08T06:16:56.591Z (over 1 year ago)
- Language: Rust
- Size: 90.8 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# yafc
Yet Another F***ing Calculator
a simple WIP computer algebra system
[](https://deps.rs/repo/github/Overpeek/yafc)
[](https://github.com/Overpeek/yafc/actions)
Nightly required:
```bash
rustup override set nightly
```
Examples:
```bash
in: -2^3^2
out[0]: -512
in: y*x*2 + x + x*2 + 3
out[1]: (y * 2 + 3) * x + 3
```