chap 2.5.0

Chap is an easy to learn, interpretive, scripting language written in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// simple math
pub mod add;
pub mod divide;
pub mod minus;
pub mod modulus;
pub mod multiply; // Divide remaining

// more math
pub mod add_many;
pub mod decrease;
pub mod increase;
pub mod power;
pub mod sqrt;