Last active
May 14, 2018 22:28
-
-
Save fdjones/1c636ce8e362e3a36510998ad35cba27 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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