|
|
|
|
|
by thrwaeasddsaf
1822 days ago
|
|
But stack languages generally do evaluate left to right. I don't see why you couldn't do right to left. Makes no semantic difference. But the original post has a snippet that should not only be evaluated right to left, but also bottom to top. Unless their indentation implies hidden parens. |
|
it's because the tokens are evaluated in the order they are consumed by the parser. But now that I think about it, the tokens only look left-to-right because that's how the text is displayed. So what's really happening is that tokens are evaluated in FIFO, and there's no reason the tokens for (a b +) couldn't be written as (+ b a).