CALCULATOR CALCULATE FLUFF
Kallisti even has its own built in calculator! Usage: calculate <number 1> <operator> <number 2> 'number 1' or 'number 2' can be an integer or a floating decimal point number. The numbers and the operator must all be separated by spaces for the calculator to work. Operator is one of the following: add, sub, mul, div, pow, mod, sin, cos, tan, log10, log (same as ln) root (use 2.0 for number2 to do square root, any other for nth root) *OR* you can use the traditional operators: + - * / ^ % Example: calc 2 + 17 : This would add 2 and 17 and print the result. For the sin, cos, tan, and log functions you still must specify a 2nd number, but only the 1st number is computed for the function. Example: calc 90 sin 0 : This would calculate the sine of 90 degrees. Coming soon - differential equation solver! See Also: DICE