]> git.donarmstrong.com Git - lilypond.git/blob - input/error.ly
release: 0.0.29
[lilypond.git] / input / error.ly
1 mwa = music {
2         $
3         a ) b ] c       % warning
4         &               % ok; error
5         a b ) ]         % ok; error
6 %        a.........     % fatal error -- assert
7         a b c
8         |||             % 
9         abc             % ok; print error, no output
10         \bla            % no warning-> this STRING, reduced to lyric_elt.
11         a [ b           % warning, still output
12         { a( b }        % warning, still output
13         a b ,c
14         a b c-*
15         a b c&
16         $
17 }
18
19 bla = music {
20         @ 
21         These Gates will open just like windows. % ok; warning
22         @
23 }
24
25 score {
26         staff { 
27                 lyric music { bla }
28         }
29         staff { 
30                 melodic music { mwa }
31         }
32         commands {
33                 meter 3*4
34         }
35 }