English | 简体中文
An simple command-line calculator program writen with Rust.
- Variable support
> a = 1
= 1
> a
= 1
- Fraction support
> f1 = fraction(1, 2)
= (1 / 2)
> f1 + 1
= (3 / 2)
- Math functions support
> Math.sin(1)
= 0.84147098
- Lazy-Expression support
> a = 10
= 10
> b = 20
= 20
> sum = {a + b}
= <Lazy-Expression>
> sum()
= 30
> a += 1
= 11
> sum()
= 31
- Comment support
> 1 + 1 # plus
= 2
- Array support
> arr = new Array([1, 2, 3])
= {
v: [
1, 2, 3,
]
...
}
> arr.push(4)
> arr
= {
v: [
1, 2, 3, 4,
]
...
}
- Function defining support
> plus1 = fn(i $Numb) {i + 1}
> plus1(1)
= 2
- Script execute support
calculator.exe script
- OOP support
> Person = cl {age $Numb, name $Str}
= {
age: Number
name: String
}
> inst = new Person(10, "test")
= {
age: 10
name: "test"
}
Please go to the release page and download the latest released appropriate executable file,
Then just execuse it.
You need to install the Rust (version >= 1.60).
Clone this repository
git clone https://github.com/BHznJNs/Calculator.rs
cd Calculator.rs
Then, use Cargo to compile
cargo build --release
The release executable file will be at: Calculator.rs/target/release
See here: Tutorials