Recursive function does not return specified value

You’re not using the return value of the recursive call. You need to do:

return load_price();

Leave a Comment