Finally, a result about lazy sequences lseq, and the functio…
Finally, a result about lazy sequences lseq, and the functions numbers and take defined as in the notes. Consider the function qqq of type ‘a lseq -> ‘a lseq -> ‘a lseq defined bylet rec qqq z w = match z with | Nil -> w | Cons(x, sf) -> Cons(x, fun () -> qqq w (sf ())) List the result of evaluating take 3 (qqq (numbers 4) (numbers 1))