]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/test/embedded-scm.ly
* scm/lily.scm (ly:all-stencil-expressions):
[lilypond.git] / input / test / embedded-scm.ly
index 69ebc803be2d5b1ab2e22441290e1e1f2bb88bc2..90d95e5d4ef3addade64b84aae140cf6ac7e9b30 100644 (file)
@@ -1,7 +1,22 @@
-\version "1.7.16"
+\version "2.3.4"
+\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 {
+       \relative c' { c }
+       \paper {raggedright = ##t}
+}
+
+