Skip to content

Instantly share code, notes, and snippets.

@lmatt-bit
Created April 15, 2015 14:36
Show Gist options
  • Select an option

  • Save lmatt-bit/a74e17ccac39efe6f2e5 to your computer and use it in GitHub Desktop.

Select an option

Save lmatt-bit/a74e17ccac39efe6f2e5 to your computer and use it in GitHub Desktop.
Sum from 0 to n
let rec sum n = if n=0 then 0 else n + sum(n - 1)
sum(10).Dump() //This is for LinqPad
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment