I'm making a replacement for some common math calculations in lua, it will have functions instead of writing like '10 + 5', so it won't be exactly the same. So far, I've only done plus (+) and greater than (>), but I'm planning to add more, for example minus (-), multiplication (*), division (/), ! and ^. Well, why am I making this when it already exists? Because it supports much more decimals than the current one, actually, it supports as many decimals as the highest lua number (except from math.huge). It's rather fast and when I ran the first time test on plus calculation (which isn't a fair time testing calculation, it's not very complicated), with 100 digits and it took only a little less than 0.001 seconds.
Do you think this could be useful? Or maybe a fun test, I want your thoughts
