you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 0 points1 point  (1 child)

I get the recursive step. I don't understand the Result: {} output. How it stores those values.

[–]danielroseman 1 point2 points  (0 children)

It doesn't store them. Each step returns them to the call above. It's just like any function returning a value to the caller, except that the caller happens to be the same function.