On 9/15/21 5:49 AM, Matt Wette wrote:
On 9/14/21 5:50 AM, Mortimer Cladwell wrote:Hi, Let's say I made a lot of mistakes. I look at my repl and see: scheme@(guile-user) [10]> Any way to back out to scheme@(guile-user)> without typing ,q ten times? Thanks MortimerTry binding a command to: (while (pair? (cdr (fluid-ref *repl-stack*))) (throw 'quit))
ThisĀ probably won't work but it could be a start.