OK I understood:
ghci> :step function_name arg1 arg2 ... ... ghci> :step ... ... ghci> :step
If you forget the function arguments, you will receive a critical error message:
<interactive>:138:1: No instance for (Show (String -> Double)) arising from a use of `print' Possible fix: add an instance declaration for (Show (String -> Double)) In a stmt of an interactive GHCi command: print it
... which can cause hair to be torn out. And if you want to skip to the end:
ghci> :continue
7stud source share