pieterderycke / Jace

Jace.NET is a calculation engine for the .NET platform.
MIT License
436 stars 94 forks source link

Percent calculations #24

Open danieldotnet opened 8 years ago

danieldotnet commented 8 years ago

Great library, but I'm missing to calculate with percent %. An easy example, 100+20% don't give a result.

jacksondus commented 7 years ago

100 + (20) or 100 + (100/100 * 20) are decent substitutes.