On Wednesday, February 28, 2018 at 4:54:57 PM UTC+1, shujingke wrote: > > > Is there anything you know that works with guile and has an convenient > debugger? >
FWIW, I use pk aka. peek stuff to debug, it takes a variable list of argument and return the last. For instance: (define my-variable 101) (define out (pk 'my-variable my-variable)) (pk (eq? out 101)) will do print ;; (my-variable 101) ;; (#t) AFAIK, there is not step debugger in Guile like gdb where you can inspect values at runtime etc... except if you do live coding and embed an REPL in you app, but I am not sure this is supported by opencog... HTH -- You received this message because you are subscribed to the Google Groups "opencog" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/opencog. To view this discussion on the web visit https://groups.google.com/d/msgid/opencog/a2a8bb8b-5451-46a7-b4c2-44482efe80cc%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
