Calculator. Type an expression like 1+2*3 and it will spit out 7 (following order of operations). You can use whitespace characters within the expression. Characters that are not below will be treated as whitespace: 0123456789.-+/*!() It supports exponents ^. Factorials (!) are also supported, and take priority over any other operation (brackets still can override)
Doesn't support complex numbers. Nor does it support powers with negative __bases__ It shows how it unravels it from inside to outside. NOTEs: 5(4) does not work, instead use 5*(4) =Note==== Press the green flag to enter another expression ==Tags (for the search engine) -> supports order of operations -> supports bodmas -> supports bidmas -> supports bedmas -> supports pemdas -> Calculator (with order of operations - PEMDAS)