Skip to content

Instantly share code, notes, and snippets.

@deque-blog
Created July 18, 2017 20:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save deque-blog/c6cc1d1b710c60c91b9593a9c35fdb71 to your computer and use it in GitHub Desktop.
Save deque-blog/c6cc1d1b710c60c91b9593a9c35fdb71 to your computer and use it in GitHub Desktop.
sumLengthUntil : Int -> Step () Int String
sumLengthUntil maxValue totalLength str =
pure $ if totalLength <= maxValue
then Continue (sumLength totalLength str)
else Done totalLength
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment