this post was submitted on 10 Aug 2026
28 points (96.7% liked)

Programmer Humor

43110 readers
39 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 7 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] ZoDoneRightNow@kbin.earth 10 points 1 day ago

Forth is a language that uses reverse polish notation instead of prefix (polish) or infix notation. This means that the operation comes after the operators. So "2 + 4" becomes "2 4 +", or in this case "I <3 Forth" becomes "I Forth <3". In a c-like language, it would be written as <3(I, Forth).