Skip to content

Instantly share code, notes, and snippets.

@uwiger
Created December 1, 2010 14:56
Show Gist options
  • Save uwiger/723590 to your computer and use it in GitHub Desktop.
Save uwiger/723590 to your computer and use it in GitHub Desktop.
%% In Erlang, re. https://gist.github.com/723543
calc_price(Foo, [List|Rest]) ->
case get_price_for(Foo, List) of
undefined -> calc_price(Rest); % recurse
P -> adjust_price(Foo, P) % return
end.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment