Created
April 26, 2015 13:10
Interpret stream of digits
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 digitToint i = | |
match i with | |
'0' -> 0 | |
| '1' -> 1 | |
| '2' -> 2 | |
| '3' -> 3 | |
| '4' -> 4 | |
| '5' -> 5 | |
| '6' -> 6 | |
| '7' -> 7 | |
| '8' -> 8 | |
| '9' -> 9 | |
| (_) -> 0 ;; | |
let mkint s = | |
let rec mkintAux s a = | |
match s with | |
[] -> a | |
| (x::xs) -> mkintAux xs ((a*10) + (digitToint x)) | |
mkintAux s 0;; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment