Skip to main content

Questions tagged [stack-oriented]

14 votes
3 answers
2k views

I've recently undertaken the task of writing a stack-based programming language. Before I started designing my language however, I thought it'd be a good idea to read and experiment with existing ...
Chris's user avatar
  • 2,860
7 votes
6 answers
7k views

A common thing you need to do is to take a value, do something with it by passing it to a function, and then do some more with the return value, in a chain. Whenever I run into this type of scenario, ...
last-child's user avatar
9 votes
1 answer
2k views

I have recently become curious about Factor, which, as far as I understand, is the most practical stack-based language around. Forth seems not to be used much these days - I think it is because it was ...
Andrea's user avatar
  • 5,425
12 votes
4 answers
6k views

Stack-oriented programming is a pretty non-widely used paradigm (well, PostScript gets used under the hood a bit here and there). This in mind, what problems are stack-oriented languages good at? What ...
Anto's user avatar
  • 11.2k