Closed
Description
Using Evaluate
on
-- >>> take 5 [0..]
produces
-- >>> take 5 [0..]-- [0,1,2,3,4]
<here is newline>
instead of
-- >>> take 5 [0..]
-- [0,1,2,3,4]
when >>> take 5 [0..]
is on the last line of file. I believe that appending newline character on beginning of Evaluate
's output instead of at the and will solve the issue.