Skip to content

Instantly share code, notes, and snippets.

@isaacabraham
Last active February 15, 2016 23:46
Show Gist options
  • Save isaacabraham/593f968e357b2dac5d02 to your computer and use it in GitHub Desktop.
Save isaacabraham/593f968e357b2dac5d02 to your computer and use it in GitHub Desktop.
let calculateFormMutable results =
let output = ResizeArray [ 0 ]
for result in results do
output.Add((result |> convertToPoints) + output.[output.Count - 1])
output |> Seq.toList
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment