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:
#!/usr/bin/env python3 import pdb; pdb.set_trace() some_function_that_is_going_to_fail_miserably()