Skip to content

Instantly share code, notes, and snippets.

@dbrattli
Last active October 16, 2018 05:06
Show Gist options
  • Save dbrattli/edf2f340a3937502d4932ff41cbb35e9 to your computer and use it in GitHub Desktop.
Save dbrattli/edf2f340a3937502d4932ff41cbb35e9 to your computer and use it in GitHub Desktop.
Asynchronoush Function
// An asynchronous function taking a long time before "returning" a value
let funcAsync () =
async {
do! Async.Sleep 5000
return 42
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment