A simplistic stack-based calculator. No datatypes, even.

The vertical bar "|" separates items on the stack - you can read the functions as though this were parentheses (like @functions) or comma (separating a function's arguments).

The stack is evaluated from right to left, but for these simple functions I thought it would be more natural to read in a left-to-right order.

Some to try:
=> "lue"
=> "lue"
=> "10"
=> "21" (greedy, uses up the whole stack)
=> "one"
=> "alue"