Skip to content

Instantly share code, notes, and snippets.

View nataren's full-sized avatar

César López-Natarén nataren

View GitHub Profile
@nataren
nataren / keybase.md
Created April 13, 2014 04:16
keybase.md

Keybase proof

I hereby claim:

  • I am nataren on github.
  • I am nataren (https://keybase.io/nataren) on keybase.
  • I have a public key whose fingerprint is 6C27 5B20 E658 DF14 88D8 C12E E26D 4C82 8604 0F5B

To claim this, I am signing this object:

keybase gist
// Creating new threads
open System
open System.Threading
//What will execute on each thread
let threadBody() =
for i in 1..5 do
//Wait 1/10 of a second
Thread.Sleep(100)
printfn "[Thread %d] %d ..."