\version "2.16.1"


\score {  % start of single compound music expression
  <<  % start of simultaneous staves section
   \time 4/4

\chords { d2:m a d:m a d:m c f a:7  d:m a:7 d:m a d:m a d:m1 }
    \new Staff {  % create RH staff
      \clef "treble"
      \key d \minor
      
        \relative c' {  % start of RH notes
          d4 f e a, d f e a, f' f g c8 (bes) a1 a4  a g a8 (g) f4 f e a, d8 (e) f (g) a4 a4 d,1
          
        }  % end of RH notes
      
    }  % end of RH staff

 \addlyrics { Schla -- fe ein, mein lie -- bes Kind -- chen,
ba -- jusch -- ki ba -- ju,
sil -- bern steht der_  Mond am Him -- mel,
lacht dir freund -- lich zu. }



    \new Staff <<  % create LH staff; needs two simultaneous voices
      \clef "bass"
      \key d \minor
      
      
        \relative d {  % start of LH voice one notes
         <d f a>2 <cis e a> <d f a> <cis e a> <d f a> <c e c'> <c f a> <cis e g a> <d f a> <cis e g a> <d f a> <cis e a> <d f a> <cis e a> <d f a>1
                  }  % end of LH voice one notes
      
      
        
      
      
          >>  % end of LH staff
  >>  % end of simultaneous staves section
}  % end of single compound music expression



 


