]> git.donarmstrong.com Git - lilypond.git/blob - input/example-3.ly
8714771e224b06fb006a3c59bef4f3c82e57ae9e
[lilypond.git] / input / example-3.ly
1 #(ly:set-option 'old-relative)
2 \version "2.1.7"
3
4 one =  \notes\relative c{
5         c'' d e f
6 }
7
8 two =  \notes\relative c{
9         \clef "bass"
10         c'2 g2
11 }
12
13 \score{
14         <<
15                 \one
16                 \two
17         >>
18         \paper{}
19         \midi{}
20 }
21
22 % A full example with two staves
23 %
24 % Type:
25 %
26 %     lilypond example-3
27 %     xdvi example-3     # or your dvi viewer here
28
29 %%
30 %% For learning LilyPond, please read the tutorial, included in the
31 %% user-manual.
32 %%