Advertisement
Guest User

Untitled

a guest
Jun 11th, 2012
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Scheme 0.49 KB | None | 0 0
  1. (make-music
  2.   'EventChord
  3.   'elements
  4.   (list (make-music
  5.           'NoteEvent
  6.           'duration
  7.           (ly:make-duration 0 0 1 1)
  8.           'pitch
  9.           (ly:make-pitch -1 3 0))
  10.         (make-music
  11.           'NoteEvent
  12.           'duration
  13.           (ly:make-duration 0 0 1 1)
  14.           'pitch
  15.           (ly:make-pitch -1 5 0))
  16.         (make-music
  17.           'NoteEvent
  18.           'duration
  19.           (ly:make-duration 0 0 1 1)
  20.           'pitch
  21.           (ly:make-pitch -1 1 0))))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement