This document discusses continuation passing style and its relationship to .NET Tasks and F# Async workflows. It explains that both Tasks and Async workflows follow a continuation passing style under the hood. It then describes how the two could be linked together to allow using Tasks in F# Async workflows and vice versa through conversion functions. This would allow awaiting Tasks in F# code and using Async workflows in C# code. Finally, it mentions an implementation of these conversions on GitHub called FusionTasks.