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