Skip to content

Instantly share code, notes, and snippets.

@lenadroid
Last active August 29, 2015 14:19
Show Gist options
  • Save lenadroid/f7b71b2e5a74b90b0ddd to your computer and use it in GitHub Desktop.
Save lenadroid/f7b71b2e5a74b90b0ddd to your computer and use it in GitHub Desktop.
F# in the cloud
let maxContentLength = cloud {
let lengthsJob = [| "https://github.com";"http://www.microsoft.com/"|]
|> Array.map (getContentLength >> Cloud.OfAsync)
let! lengths = Cloud.Parallel lengthsJob
return Array.max lengths
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment