lilypond-user
[Top][All Lists]
Advanced

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

Scheme expressions on lilypond command line (-e)


From: Dave Seidel
Subject: Scheme expressions on lilypond command line (-e)
Date: Mon, 19 Oct 2020 17:14:52 -0400

Hi all,

I am trying to define a variable on the command line that I can use within the .ly file. I've tried both

-e "(define-public part 1)"

and

-e "(define part 1)"

In the .ly file, I have a Scheme _expression_

#(if (= part 0)
  (define partName "")
  (define partName (string-append "S" part))
)

In either case, I get the error 

GUILE signaled an error for the _expression_ beginning here
#
 (if (= part 0)
Unbound variable: part

I guess I'm either defining the variable incorrectly, or dereferencing it incorrectly within the script. Can someone help?

Thanks,
Dave

reply via email to

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