Clearing the WinGhci command line (and its values)

How can I clear WinGhci (one of the Haskell Windows IDEs) and all current "session" values?

+6
haskell winghci
source share
2 answers

You can use :load with no arguments to clear all modules and bindings. To clear the prompt, just press ctrl + s .

+11
source share

For me, Ctrl + L works on windows :)

0
source share

All Articles