Skip to content

Instantly share code, notes, and snippets.

@mikhailshilkov
Created July 5, 2018 21:14
Show Gist options
  • Save mikhailshilkov/3c49bb975b9ae86e1ba09eddefb72692 to your computer and use it in GitHub Desktop.
Save mikhailshilkov/3c49bb975b9ae86e1ba09eddefb72692 to your computer and use it in GitHub Desktop.
let sendReservation () = async {
let! speaker = repository.LoadSpeaker()
let! talk = speaker.nextTalk()
let! conf = talk.getConference()
let! city = conf.getCity()
do! bookFlight(speaker, city)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment