lilypond-user
[Top][All Lists]
Advanced

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

if procedure


From: Freeman Gilmore
Subject: if procedure
Date: Wed, 27 Nov 2019 08:20:04 -0500

>From Extending Lilypond:

guile> (define a 3)
guile> (define b 5)
guile> (if (> a b) "a is greater than b" "a is not greater than b")
"a is not greater than b"

Note missing ")".

In Frescobaldi i tried:

\version "2.19.83"
#(define a 3)
#(define b 5)
#(display (if (> a b) "a is greater than b" "a is not greater than b")
"a is not greater than b"))

What did I do wrong?

Thank you.;
fg



reply via email to

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