this post was submitted on 11 Jan 2026
370 points (92.8% liked)

Programmer Humor

28409 readers
1978 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 2 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[โ€“] Kache@lemmy.zip 2 points 1 day ago* (last edited 1 day ago) (1 children)

Isn't functional stuff closely related to type theory & type systems in all langs? In that sense, it's prevented whole classes of bugs from ever getting to prod in the first place.

Responsible for 0% of code in production

Best code is no code at all

[โ€“] Crazazy@feddit.nl 1 points 7 hours ago

Depends very much on the language you're using. Haskell and ocaml do fall into that category, whereas erlang and scheme are also functional languages with fairly weak typing.

If there is one thing that connects functional programming as a whole, it is that in FP, program flow is managed mostly through function application, instead of if statements and for/while loops.