Hi Tim,

Am 30.04.2021 05:26 schrieb Tim Meehan:
Is there something in Guile that is similar to Python's "pdb" module?
For instance, sometimes I find it helpful to pause right before something
bad happens with:

you can use the debugging features of the REPL. See:
,help debug

Example:
,break some-function-that-is-going-to-fail-miserably

Related to ,break is ,break-at-source, where you can give the line number where you want to stop.

You may also find ",trace" useful, it shows all calls to a given function.

Best,

Ricardo

Reply via email to