Why use a stack-oriented language? [closed]
Stack orientation is an implementation detail. For example, Joy can be implemented using rewriting – no stack. This is why some prefer to say “concatenative” or “compositional”. With quotations and combinators you can code without thinking about the stack. Expressing yourself with pure composition and without locals or named arguments is the key. It’s extremely … Read more