this post was submitted on 10 Aug 2026
35 points (94.9% liked)

Programmer Humor

43130 readers
369 users here now

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

Rules:

founded 7 years ago
MODERATORS
top 3 comments
sorted by: hot top controversial new old
[–] iguessimlemming@lemmy.ml 7 points 2 days ago (2 children)

I would love to understand, can someone..?

[–] ZoDoneRightNow@kbin.earth 14 points 2 days 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).