https://github.com/mikmuellerdev/kalk
A calculator language written in Rust
https://github.com/mikmuellerdev/kalk
Last synced: 10 months ago
JSON representation
A calculator language written in Rust
- Host: GitHub
- URL: https://github.com/mikmuellerdev/kalk
- Owner: MikMuellerDev
- License: gpl-2.0
- Created: 2022-08-26T16:20:57.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2023-06-28T21:22:21.000Z (about 3 years ago)
- Last Synced: 2025-06-18T23:42:03.051Z (about 1 year ago)
- Language: Rust
- Size: 15.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Kalk
A calculator language written in Rust
## Why?
- To practice writing an interpreted programming language
- Because I need an ~~advanced~~ calculator for math class when doing small calculations
## Installation
```bash
cargo install --path=. --force
```
## How to Run
```bash
# cargo run -- '-42 * ( 3 * 14159265 - 42 )'
kalk '-42 * ( 3 * 14159265 - 42 )'
```