]> git.donarmstrong.com Git - lilypond.git/blob - input/no-notation/embedded-scm.ly
* lily/staff-symbol-referencer.cc (get_position): emergency
[lilypond.git] / input / no-notation / embedded-scm.ly
1 \version "2.3.8"
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         \paper {raggedright = ##t}
20 }
21
22