]> git.donarmstrong.com Git - lilypond.git/blob - input/test/embedded-scm.ly
* input/test/chord-names-jazz.ly:
[lilypond.git] / input / test / embedded-scm.ly
1 \version "2.1.26"
2 \header {
3     
4     texidoc = "@cindex Embedded scm
5
6 You can embed scheme functions in your scores.  While processing this
7 file, ``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         \notes\relative c' { c }
19         \paper {raggedright = ##t}
20 }
21
22