Re: breakpoints at the repl

2010-09-19 Thread Ludovic Courtès
Hello! Andy Wingo writes: > We have breakpoints now: That’s excitingly cool, thank you! Ludo’.

Re: breakpoints at the repl

2010-09-19 Thread Neil Jerram
Andy Wingo writes: > Hi all, > > We have breakpoints now: Nice! Neil

breakpoints at the repl

2010-09-19 Thread Andy Wingo
Hi all, We have breakpoints now: scheme@(guile-user)> (define (foo) "hello!") scheme@(guile-user)> ,break foo Added breakpoint 0 at #. scheme@(guile-user)> (foo) Trap 0: breakpoint at # Entering a new prompt. Type `,bt' for a backtrace or `,q' to continue. scheme@(gui