lily9.ly 596 B

1234567891011121314151617181920212223
  1. #(define version-seen? #t)
  2. #(set! %load-path (cons ".." %load-path))
  3. \include "../festival.ly"
  4. #(set! song:*debug* #f)
  5. \score{
  6. \festival #"lily9.xml" { \tempo 4 = 100 }
  7. <<
  8. \context Voice = melody \relative c' {
  9. c2 e4 r4 | g2 e | c1 |
  10. \context Voice = verse \repeat volta 2 {c4 d e f | g1 | }
  11. a2 b | c1}
  12. \lyricsto melody \context Lyrics = mainlyrics \lyricmode {
  13. do mi sol mi do
  14. la si do }
  15. \lyricsto verse \context Lyrics = mainlyrics \lyricmode {
  16. do re mi fa sol }
  17. \lyricsto verse \context Lyrics = repeatlyrics \lyricmode {
  18. dodo rere mimi fafa solsol }
  19. >>
  20. }