Forth I assume uses reverse polish notation: arguments before the operator.
3 4 +
for example, would return 7.
> would return 7
more pedantically, it would push 7 onto the stack
The stack is really a convenience that makes pipeline-driven programming possible in the language.
> would return 7
more pedantically, it would push 7 onto the stack