Created
November 19, 2010 12:27
-
-
Save aktowns/706459 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let rec omNoms start op from nto = | |
if from > nto then start | |
else op from (omNoms start op (from + 1) nto) | |
printfn "%d" (omNoms 0 (+) 1 100) |
Author
aktowns
commented
Nov 19, 2010
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment