]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/no-notation/die-staff.ly
Merge branch 'jneeman' of git+ssh://jneem@git.sv.gnu.org/srv/git/lilypond into jneeman
[lilypond.git] / input / no-notation / die-staff.ly
index af56a53f21b253b13a2c8e86b8d90960953fa42d..4f94b3bd14ad91b078032fe7a4072bfdf9f3d4bc 100644 (file)
@@ -1,23 +1,23 @@
-\version "1.9.0"
+\version "2.10.0"
 
 \header  {
 texidoc = "a staff should really die, if no one's referencing it."
 }
 \score {
  {
-    \context Staff = q {
-      \notes { a' b' c' d' }
+    \new Staff =  "q" {
+       { a' b' c' d' }
     }
 
     \break
 
-    \context PianoStaff <
-      \context Staff = i {
-        \notes { a' b' c' d' }
+    \context PianoStaff <<
+      \new Staff =  "i" {
+         { a' b' c' d' }
       }
-      \context Staff = ii {
-        \notes { \clef "bass" a b c d }
+      \new Staff =  "ii" {
+         { \clef "bass" a b c d }
       }
-    >
+    >>
   }
 }