nimkalc icon indicating copy to clipboard operation
nimkalc copied to clipboard

A zero-dependency advanced math parsing library written in pure, idiomatic nim

Results 1 nimkalc issues
Sort by recently updated
recently updated
newest added

**expression:** `-10^2` **expected answer:** [`-100`](https://www.google.com/search?q=-10%5E2) **current result:** `100` generated tree: ```nim Binary( Unary( Minus, Integer(10) ), Exp, Integer(2) ) ```