fork download
  1. seq { while true do yield stdin.ReadLine () }
  2. |> Seq.takeWhile ((<>) "42")
  3. |> Seq.iter (printfn "%s")
Success #stdin #stdout 0.06s 28264KB
stdin
1
2
10
42
11
stdout
1
2
10