mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-04-17 10:23:46 +00:00
26 lines
836 B
Plaintext
26 lines
836 B
Plaintext
1: 1 1 CALL pred all_solutions.main/2-0 (det) all_solutions.m:20
|
|
mdb> echo on
|
|
Command echo enabled.
|
|
mdb> context none
|
|
Contexts will not be printed.
|
|
mdb> register --quiet
|
|
mdb> break hello
|
|
0: + stop interface pred all_solutions.hello/1-0 (multi)
|
|
mdb> continue
|
|
3: 3 3 CALL pred all_solutions.hello/1-0 (multi)
|
|
mdb> stack
|
|
0 pred all_solutions.hello/1-0 (multi)
|
|
1 pred solutions.builtin_aggregate/4-0 (cc_multi)
|
|
2 pred solutions.builtin_solutions/2-0 (cc_multi)
|
|
3 pred solutions.solutions/2-0 (det)
|
|
4 pred all_solutions.main/2-0 (det)
|
|
mdb> retry 1
|
|
that call is not in a deep traced region
|
|
mdb> retry 2
|
|
that call is not in a deep traced region
|
|
mdb> retry 3
|
|
2: 2 2 CALL pred solutions.solutions/2-0 (det)
|
|
mdb> continue -n -S
|
|
Hello again, world
|
|
Hello, world
|