
30 Apr
2010
30 Apr
'10
5:12 p.m.
On Fri, Apr 30, 2010 at 1:37 PM, Thomas Hartman
why does the lazy version use the internal type, whereas the strict version of Text IO just using plain Data.Text type?
That's just ghci playing display games with you, based on the names under which you imported the modules. There are two Text types, strict and lazy, so the lazy IO module returns a lazy Text, while the strict ... well, you get it.