Forth

10 points | by beardyw an hour ago

3 comments

  • ajhenrydev 17 minutes ago

    Can someone explain for me?

      HFguy 12 minutes ago

      Forth uses RPN so the "verb" is last.

      That is, you provide the data first (I and Forth) and the command (heart) last.

      spott 13 minutes ago

      Forth I assume uses reverse polish notation: arguments before the operator.

      3 4 +

      for example, would return 7.