Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
% when the list is empty, Current_Value and Final_Value are unified
processing_my_list([], Final_Value, Final_Value).
processing_my_list([H|T], Current_Value, Final_Value) :-
working_with_current_element(H, Current_Value, New_Current_Value),
processing_my_list(T, New_Current_Value,Final_Value).