Skip to content

Instantly share code, notes, and snippets.

@grishace
Created May 13, 2020 18:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save grishace/3c01569d2f18b365f5d67a388eba521f to your computer and use it in GitHub Desktop.
Save grishace/3c01569d2f18b365f5d67a388eba521f to your computer and use it in GitHub Desktop.
No SO!
open System
open FSharp.Control
[<EntryPoint>]
let main _ =
let rec receiver () =
asyncSeq {
yield async.Return "."
yield! receiver ()
}
receiver()
|> AsyncSeq.mapAsync id
|> AsyncSeq.iter (fun m -> Console.Write(m))
|> Async.Start
Console.ReadLine() |> ignore
0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment