Haskeline provides the functions outputStr
and outputStrLn
, which output to stdout
, but is there a way to update text that's already been outputted? I'm thinking of, for example, when an installer displays the current percentage installed -- the percentage number updates.
Am I going to need to use a curses
binding?
putStr
– Caseose