Skip to content

Instantly share code, notes, and snippets.

@Ummon
Ummon / Program.fs
Created October 8, 2015 15:42
Module 2 - Problem
open System
let rec readAge () : int =
printf "Age: "
match Int32.TryParse(Console.ReadLine()) with
| true, age when age > 0 -> age
| _ ->
printfn "Cannot read the age, please retry.."
readAge ()