]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/test/embedded-scm.ly
*** empty log message ***
[lilypond.git] / input / test / embedded-scm.ly
index 977b3adfce7506ac56fc24aa6e67e25e9c7a3e84..9237122f77c1b1df91a018eb054b532a0c2186c3 100644 (file)
@@ -1,5 +1,22 @@
+\version "2.2.0"
+\header {
+    
+    texidoc = "@cindex Embedded scm
 
-#(begin (newline)(display "hello world")(newline))\score{
-       \notes\relative c'{ c }
+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}
+}
+
+