Skip to content

Instantly share code, notes, and snippets.

@fdjones
Last active May 14, 2018 22:28
Show Gist options
  • Save fdjones/1c636ce8e362e3a36510998ad35cba27 to your computer and use it in GitHub Desktop.
Save fdjones/1c636ce8e362e3a36510998ad35cba27 to your computer and use it in GitHub Desktop.
fun sum_aux (xs, acc, limit) =
if acc >= limit then acc
else
sum_aux (tl xs, acc + hd xs, limit);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment