open System
open System.Threading
for count in [0 .. 9] do
printfn "I can count to %d" count
Thread.Sleep(TimeSpan.FromSeconds(0.3)) |> ignore