]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/test/embedded-scm.ly
*** empty log message ***
[lilypond.git] / input / test / embedded-scm.ly
index d530c859655e477de1fba7f01f2b18ae5d9a56bf..9237122f77c1b1df91a018eb054b532a0c2186c3 100644 (file)
@@ -1,4 +1,22 @@
-#(begin (newline)(display "hello world")(newline))\score{
-       \notes\relative c'{ c }
+\version "2.2.0"
+\header {
+    
+    texidoc = "@cindex Embedded scm
+
+You can embed scheme functions in your scores.  While generating the
+output, ``hello world'' is printed to the console.
+"
+     % see also: --safe-mode
 }
 
+#(begin
+  (newline)
+  (display "hello world")
+  (newline))
+
+\score {
+       \notes\relative c' { c }
+       \paper {raggedright = ##t}
+}
+
+