]> git.donarmstrong.com Git - lilypond.git/blob - input/no-notation/embedded-scm.ly
Merge branch 'jneeman' of git+ssh://jneem@git.sv.gnu.org/srv/git/lilypond into jneeman
[lilypond.git] / input / no-notation / embedded-scm.ly
1 \version "2.10.0"
2 \header {
3     
4     texidoc = "@cindex Embedded scm
5
6 You can embed scheme functions in your scores.  While generating the
7 output, ``hello world'' is printed to the console.
8 "
9      % see also: --safe-mode
10 }
11
12 #(begin
13   (newline)
14   (display "hello world")
15   (newline))
16
17 \score {
18         \relative c' { c }
19         \layout {ragged-right = ##t}
20 }
21
22