Skip to content

Instantly share code, notes, and snippets.

@jdunphy
Created August 18, 2010 18:24
Show Gist options
  • Save jdunphy/535708 to your computer and use it in GitHub Desktop.
Save jdunphy/535708 to your computer and use it in GitHub Desktop.
update_attributes(App, []) -> App;
update_attributes(App, NewProps) ->
[Prop|OtherNewProps] = NewProps,
{Key,Val} = Prop,
UpdatedApp = App#app{Key = Val},
update_attributes(UpdatedApp, OtherNewProps).
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment