Skip to content

Instantly share code, notes, and snippets.

@BBischof
Created April 12, 2016 22:07
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 BBischof/e57cd5c69573624c8e1db4160431f734 to your computer and use it in GitHub Desktop.
Save BBischof/e57cd5c69573624c8e1db4160431f734 to your computer and use it in GitHub Desktop.
I like this example of grabbing elements from a List until you reach your desired sum.
{ var sum = 0; (1 to 10000) takeWhile { i => sum += i; sum <= 100 } }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment