repo.or.cz
/
lilypond.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
lilypond-0.0.39
[lilypond.git]
/
input
/
midi.ly
blob
9e45033808f12c9bd0a78d032b0c5aab3ebd6f82
1
% midi.ly
2
% test source for lilypond-s midi output
3
4
melodie
=
music
{
5
$
\clef\violin
6
c c
|
g g
|
a a
|
g
2
7
f f
|
e e
|
d d
8
.
e
16
|
c
2
|
% :|
8
$
9
}
10
11
begeleiding
=
music
{
12
$
13
\clef \bass
14
\octave
{
`
}
15
c
'
c
|
'
e
'
c
|
'
f
'
c
|
'
e
'
c
16
'
d b
|
'
c a
|
f g
|
c
2
|
17
$
18
}
19
20
mstaf
=
staff
{
21
melodic
22
music
{
melodie
}
23
}
24
25
bass
_
staf
=
staff
{
26
melodic
27
music
{
begeleiding
}
28
}
29
30
score
{
31
staff
{
mstaf
}
32
staff
{
bass
_
staf
}
33
commands
{
34
meter
{
2
*
4
}
35
}
36
paper
{}
37
midi
{
38
tempo
4
:
120
39
}
40
}
41