Skip to content

Latest commit

 

History

History
8 lines (6 loc) · 161 Bytes

File metadata and controls

8 lines (6 loc) · 161 Bytes

Stream.empty : unit -> 'a Stream.t

let unsubscribe = Stream.empty ()
  |> Stream.subscribe (fun () -> print_endline "pass")

(* no output *)