Skip to content

Instantly share code, notes, and snippets.

@sorindragan
Created March 20, 2018 18:41
Show Gist options
  • Save sorindragan/363f7a807507337f26aa74fabefd69be to your computer and use it in GitHub Desktop.
Save sorindragan/363f7a807507337f26aa74fabefd69be to your computer and use it in GitHub Desktop.
Sum up all the elements from a list.
suml [] = 0
suml (x:xs) = x + suml xs
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment