Earlier quoted context omitted.
I don't really even understand what is meant by "being able to write code from left to right without backtracking”, much less why that is bonkers. Scrolling down and seeing the code examples, the language even seems quite conventional, so I'm even more confused.
Isn't that a whole lot more "being able to write code without making a lot of dumb mistakes", which is a feature of the programer. So it boils down to getting gud and practice?
Lets take a hypothetical C-like language:
result = C(B(A()))
In this your result is on the left hand side. The first function to be executed is A and then B and lastly C, which also reads right to left. This is a pretty common way to write code, it's by no means unique to C-like languages. So you'd have gotten so good at reading code like this that you probably don't even realise you're reading right to left.Now lets look at a POSIX-like shell language:
result = $(A | B | C)
Here the result is still on the left hand side but now you're reading the functions from left to right (ie pipes)I'm not the article author by my own programming language takes things a step further from conventional shells and you can do the following:
A -> B -> C -> set result
Here it reads fully left to right. There is zero confusion about which order to read this.----------------
Going back to the more general point about reading left to right, it's worth noting that even math operators can be extended this way. For example with polish notation (https://en.wikipedia.org/wiki/Polish_notation) your operators precede your values. Effectively turning those symbols into function names:
+ 2 5
...would return 7Though personally I prefer the more traditional format of operators sitting between their values (2+5), but that's purely because that is what I'm used to.