lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: debug scheme part working with Frescobaldi


From: Andrew Bernard
Subject: Re: debug scheme part working with Frescobaldi
Date: Wed, 20 Jul 2022 17:12:27 +1000

I don't know if this is helpful but debug print statements, the last resort of the desperate, are sometimes useful.

% simple debug print
#(define (dbg . args)
   "Simple debug console print."
   (cond
    ((not (null? args))
     (display (car args))
     (display " ")
     (apply dbg (cdr args)))
    (else (newline))
    )
   )

Andrew






reply via email to

[Prev in Thread] Current Thread [Next in Thread]