Crates.io | calcium-oxide |
lib.rs | calcium-oxide |
version | 0.1.15 |
source | src |
created_at | 2022-04-02 09:47:31.243044 |
updated_at | 2022-04-09 06:03:33.710967 |
description | Calc-ium Oxide, a simple stack based command line calculator written in rust. |
homepage | https://github.com/Vonr/cao |
repository | https://github.com/Vonr/cao |
max_upload_size | |
id | 560767 |
size | 27,252 |
Calc-ium Oxide, a simple stack based command line calculator written in rust
# Calculate golden ratio
$ cao 1 5 sqrt + 2 /
1.618033988749895
# Calculate the greatest common divisor of 372 and 64
$ cao 372 64 gcd
4
# Calculate the first 20 fibonnaci numbers
$ cao 1 21 seq fib map
1 1 2 3 5 8 13 21 34 55 89 144 233 377 610 987 1597 2584 4181 6765
# Calculate the ratio of the number of numbers in (1..1000000] that
# are prime to the number that are composite to 5 decimal places
$ cao 1 1000000 seq len 0 store prime map + fold dup 0 take swap - / 5 dp
0.08518
Refer to DOCS.md