]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/music-function-direct-call.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / input / regression / music-function-direct-call.ly
1 \version "2.19.22"
2
3 \header {
4   texidoc = "Music functions can be called directly from Scheme."
5 }
6
7 \new Staff {
8   #(relative
9     (make-sequential-music
10      (list
11       (time '(3 2) '(5 . 4)) #{ e'8 8 8 8 8 8 8 8 8 8 #}
12       (clef "bass")
13       (key #{ a #} major)
14       (time '(3 . 4))
15       (tuplet '(2 . 3) #{ 4. #} #{ d,8 e fis gis #})
16       (key *unspecified*)
17       #{ a2. #})))
18 }