Calculator.rs Save

A simple command-line calculator program writen with Rust.

Project README

Calculator.rs Logo

Calculator.rs

English | 简体中文

An simple command-line calculator program writen with Rust.

Features

  • 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"
}

Installation

Windows || GNU/Linux || MacOS (x86_64)

Please go to the release page and download the latest released appropriate executable file,

Then just execuse it.

Other OS && Platform

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

Tutorial

See here: Tutorials

Open Source Agenda is not affiliated with "Calculator.rs" Project. README Source: BHznJNs/Calculator.rs
Stars
94
Open Issues
5
Last Commit
5 months ago
License

Open Source Agenda Badge

Open Source Agenda Rating