Skip to content

Instantly share code, notes, and snippets.

@mikhailshilkov
Created July 5, 2018 21:16
Show Gist options
  • Save mikhailshilkov/7f50ad56ac206ba9b471968092cda497 to your computer and use it in GitHub Desktop.
Save mikhailshilkov/7f50ad56ac206ba9b471968092cda497 to your computer and use it in GitHub Desktop.
let loop () = actor {
let! message = mailbox.Receive()
match message with
| Greet(name) -> printfn "Hello %s" name
| Hi -> printfn "Hello from F#!"
return! loop ()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment