|
|
|
|
|
by digdugdirk
1114 days ago
|
|
As someone who isn't a trained programmer (and has no background or understanding of lisp) that looks like you took something sensible and turned it into gibberish. Is there a recommended "intro to understanding lisp" resource out there for someone like myself to dive in to? |
|
So it basically breaks this down into a list of instructions to do to x. You will multiply it by 2, add 1 to it, take 3 from it, then do the modulus by the original value of x (the value before any of these steps).
Clojurists feel like this looks more readable than the alternative, because you have a list of transformations to read left to right, vs this
Which is the most unreadable of them all, to me.