]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/test/scheme-interactions.ly
* buildscripts/mf-to-table.py (base): break table every three
[lilypond.git] / input / test / scheme-interactions.ly
index e7802cad2423123c7ed431b0d5ffee4c1725bd1a..039e45e9ccae59e636e03f1b05d39c7449b434d6 100644 (file)
@@ -1,25 +1,23 @@
-\version "1.7.2"
-
-\header {
-
-    texidoc = "With @code{ly-id}, you can pass of the result of
-Scheme expressions as lilypond input. Within a Scheme expression, you
-can use, define or change lilypond variables. "
-
+\version "1.7.18"
+\header { texidoc = "@cindex Scheme Interactions
+With @code{ly:export}, you can pass of the result of
+Scheme expressions as lilypond input.  Within a Scheme expression,
+you can use, define or change lilypond variables. "
 }
 
-
-foo = \notes \transpose c' { d''4-. }
-bra = \notes \transpose c' { e'4-. }
+foo = \notes \transpose c c { d''4-. }
+bra = \notes \transpose c c { e'4-. }
 
 \score { 
   \context Voice \notes\relative c' {
       c4
-      #(ly-import (make-sequential-music (list foo foo foo )))
+      #(ly:export (make-sequential-music (list foo foo foo )))
       #(begin (define baz (make-simultaneous-music (list foo bra)))
        (empty-music))
       c4
       \baz
       c4
   }
+       \paper {raggedright=##t}
 }
+