]> git.donarmstrong.com Git - lilypond.git/blob - input/no-notation/embedded-scm.ly
fix keep-inside-line on the left side (issue #130)
[lilypond.git] / input / no-notation / embedded-scm.ly
1 \version "2.7.39"
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