blob: 71c18fff06b3d3803d0ef0c3f4a246fbdd1adf59 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
:set -fprint-explicit-foralls
:l QSort
:delete 1
-- Illegal: empty breakpoint list
:break NonModule 1
-- Illegal: I don't know this module
:break QSort 1 1
-- Error: No breakpoint here
:show breaks
-- Show an empty list
qsort [8, 4, 42, 16, 15, 23]
-- Should run normally
-- Testing that ghci commands work normally
:i map
|