]> git.donarmstrong.com Git - lilypond.git/blob - ly/scheme-sandbox.ly
Web-ja: update introduction
[lilypond.git] / ly / scheme-sandbox.ly
1 \version "2.16.0"
2
3 #(load-user-init)
4
5 % This loads the user's .guile file for interactive sessions.
6 % One typical thing you might want to put there is
7 % (use-modules (ice-9 readline))
8 % (activate-readline)
9 % in order to activate command line editing for interactive sessions.
10 % You need libreadline support and the respective Guile module to be
11 % installed for that.  In Debian, for example, this is part of the
12 % guile-1.8-libs package.  Depending on your system and version, the
13 % requirements may be different.
14
15 #(newline)
16 #(if (guile-v2)
17      (begin
18        (use-modules (system repl repl))
19        (start-repl))
20      (scm-style-repl))