]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/test/embedded-scm.ly
*** empty log message ***
[lilypond.git] / input / test / embedded-scm.ly
index 86d98c5d7ad4bf648a36f940a9159cf15b38b79b..9237122f77c1b1df91a018eb054b532a0c2186c3 100644 (file)
@@ -1,7 +1,22 @@
-\version "1.7.6"
+\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
 }
 
-%% new-chords-done %%
+#(begin
+  (newline)
+  (display "hello world")
+  (newline))
+
+\score {
+       \notes\relative c' { c }
+       \paper {raggedright = ##t}
+}
+
+