Hello PhiLho,
thanks a lot for the explanation.
And finally regarding call by ref / call by val:
a call by ref
I have a question that is related.
I try to implement a function that works recursive:
http://en.wikipedia.org/wiki/Backtracking_searchI had this working in another programming language.
There it was a call by value.
Thus when returning to the function from a previous higher recursion depth
I need the old value to be in my function. This is possible with a call by value,
but not with a call by ref as we have here in p5.
So in order to implement my little algorithm, I'd like to ask how I can implement a
recursive func with a call by value? Or what are the common work arounds?
Thanks!
Greetings, Chrisir
