pest-parser / pest

The Elegant Parser
https://pest.rs
Apache License 2.0
4.67k stars 261 forks source link

Swap precedence of negation and factorial #865

Closed SandaruKasa closed 1 year ago

SandaruKasa commented 1 year ago

Change calc example's behavior from

> -10!
-10! => ((-10)!) => 1

to

> -10!
-10! => (-(10!)) => -3628800

In my defense:

all share the same sentiment. That is, -10! = -(10!)