
\version "2.16.1"

rh = % start of RH voice one notes
\relative c' {
  \key g \major
  \time 3/4
  
  \partial 4
  d4 | g4 g g | a d, d | a' a a | b g d' | d b8 (d) b(d) | 
  c4 a c |c a8 (c) a (c)| b2 d4 | g8 fis e d  c b | d4 c a |
  fis8 g a b c a | g2. 
  \revert Staff.BarLine #'allow-span-bar
  \bar "|."
}

\addlyrics {
  Es tö -- nen die Lie -- der,
  der Früh -- ling kehrt wie -- der, es
  spie -- let_ der_ Hir -- te,
  auf sei -- ner_  Schal_ -- mei_, tra
  la la la la la la la la, la
  la la la la la la la_

}

lH =
\relative g {  % start of LH voice one notes
  \clef "bass"
  \key g \major
  \time 3/4
  
  \partial 4
  r4 | <g b d>2. | <d fis a> | <d fis a> | <g b d> | <g b d> |<d fis a> |
  <d fis a>| < g b d> | <g b d> | < d fis a> |< d fis a>| <g b d>
}

\score {  % start of single compound music expression

  \new PianoStaff <<  % start of simultaneous staves section
    \chords {  s4 g2. d d g g d d g g d d g2 }
    \new Staff \with { \override BarLine #'allow-span-bar = ##f } \rh
    \new Staff \lH
  >>  % end of simultaneous staves section
}  % end of single compound music expression  
        
      

