this post was submitted on 21 Mar 2024
293 points (94.8% liked)

Programmer Humor

19161 readers
321 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 1 year ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] noli@programming.dev 10 points 5 months ago (2 children)

Depends on how deep down the rabbit hole you want to go :p

  • creating a new variable that contains the updated value
  • recursion (e.g. it's not possible to make a loop that increments i by 1, but it is possible to turn that loop into a function which calls itself with i+1 as argument)
  • avoiding typical types of operations that would update variable values. For example instead of a for loop that updates every element of a list, a functional programmer will use the map function, which takes a list and a function to apply to each element of that list to create an updated list. There's several more of these very typical functions that are very powerful once you get used to using them.
  • monads (I'm not even gonna try to explain them as I hardly grasp them myself)
[–] DaforLynx@lemmy.zip 4 points 5 months ago

You just dropped a mind bomb on me. Suddenly things make sense :o

[–] shield_gengar@sh.itjust.works 3 points 5 months ago

A monad is just a monoid in the category of endofunctors, what's the problem?