| ▲ | Someone 2 days ago | |
J is APL-inspired, and APL is right-associative, so that would surprise me. https://www.jsoftware.com/help/jforc/preliminaries.htm#_Toc1... agrees with that, saying “All J verbs (functions and operators) have the same priority and associate right-to-left. For example, a b + c is equivalent to a * (b + c), not (a * b) + c.”* Your point about not needing operator precedence still stands, though. | ||
| ▲ | aleph_minus_one 2 days ago | parent [-] | |
> J is APL-inspired, and APL is right-associative, so that would surprise me. You are indeed right (it has been quite a long time since I experimented with J): > https://www.jsoftware.com/help/jforc/preliminaries.htm (scroll down to "Order of Evaluation") | ||