Created
January 25, 2016 07:05
-
-
Save michaelchum/21876e63e108d4b918cf to your computer and use it in GitHub Desktop.
Revisions
-
michaelchum created this gist
Jan 25, 2016 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,9 @@ let rec is_even = function | 0 -> true | n -> is_odd (n-1) and is_odd = function | 0 -> false | n -> is_even (n-1) ;;