Skip to content

Instantly share code, notes, and snippets.

@JefClaes
Last active August 29, 2015 14:07
Show Gist options
  • Save JefClaes/9a646cea31c05984683b to your computer and use it in GitHub Desktop.
Save JefClaes/9a646cea31c05984683b to your computer and use it in GitHub Desktop.
Recursion in F#
let rec recursiveFun i =
Console.WriteLine(i.ToString())
recursiveFun (i + 1)
recursiveFun 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment