'''1. ソースコードを解凍したディレクトリに移動する。'''
{{{
cube:~ matsu$ cd /Users/matsu/SourceForge/brc/lisp/
}}}
'''2. Lispを起動する。'''
{{{
cube:~/SourceForgeJ/brc/lisp matsu$ clisp -norc
i i i i i i i ooooo o ooooooo ooooo ooooo
I I I I I I I 8 8 8 8 8 o 8 8
I \ `+' / I 8 8 8 8 8 8
\ `-+-' / 8 8 8 ooooo 8oooo
`-__|__-' 8 8 8 8 8
| 8 o 8 8 o 8 8
------+------ ooooo 8oooooo ooo8ooo ooooo 8
Welcome to GNU CLISP 2.43 (2007-11-18) <http://clisp.cons.org/>
Copyright (c) Bruno Haible, Michael Stoll 1992, 1993
Copyright (c) Bruno Haible, Marcus Daniels 1994-1997
Copyright (c) Bruno Haible, Pierpaolo Bernardi, Sam Steingold 1998
Copyright (c) Bruno Haible, Sam Steingold 1999-2000
Copyright (c) Sam Steingold, Bruno Haible 2001-2007
Type :h and hit Enter for context help.
}}}
'''3. ローダープログラムをロードする。'''
{{{
[1]> (load "load.lisp")
;; Loading file load.lisp ...
;; Loading file /Users/matsu/SourceForgeJ/brc/lisp/Definitions.fas ...
;; Loaded file /Users/matsu/SourceForgeJ/brc/lisp/Definitions.fas
;; Loading file /Users/matsu/SourceForgeJ/brc/lisp/Macros.fas ...
;; Loaded file /Users/matsu/SourceForgeJ/brc/lisp/Macros.fas
;; Loading file /Users/matsu/SourceForgeJ/brc/lisp/Tools.fas ...
;; Loaded file /Users/matsu/SourceForgeJ/brc/lisp/Tools.fas
;; Loading file /Users/matsu/SourceForgeJ/brc/lisp/Console.fas ...
;; Loaded file /Users/matsu/SourceForgeJ/brc/lisp/Console.fas
;; Loading file /Users/matsu/SourceForgeJ/brc/lisp/Utils.fas ...
;; Loaded file /Users/matsu/SourceForgeJ/brc/lisp/Utils.fas
;; Loading file /Users/matsu/SourceForgeJ/brc/lisp/Convert.fas ...
;; Loaded file /Users/matsu/SourceForgeJ/brc/lisp/Convert.fas
;; Loading file /Users/matsu/SourceForgeJ/brc/lisp/Represent.fas ...
;; Loaded file /Users/matsu/SourceForgeJ/brc/lisp/Represent.fas
;; Loading file /Users/matsu/SourceForgeJ/brc/lisp/Common.fas ...
;; Loaded file /Users/matsu/SourceForgeJ/brc/lisp/Common.fas
;; Loading file /Users/matsu/SourceForgeJ/brc/lisp/Number.fas ...
;; Loaded file /Users/matsu/SourceForgeJ/brc/lisp/Number.fas
;; Loading file /Users/matsu/SourceForgeJ/brc/lisp/LiteraryUS.fas ...
;; Loaded file /Users/matsu/SourceForgeJ/brc/lisp/LiteraryUS.fas
;; Loading file /Users/matsu/SourceForgeJ/brc/lisp/LiteraryUK.fas ...
;; Loaded file /Users/matsu/SourceForgeJ/brc/lisp/LiteraryUK.fas
;; Loading file /Users/matsu/SourceForgeJ/brc/lisp/Kana.fas ...
;; Loaded file /Users/matsu/SourceForgeJ/brc/lisp/Kana.fas
;; Loading file /Users/matsu/SourceForgeJ/brc/lisp/Mathematics.fas ...
;; Loaded file /Users/matsu/SourceForgeJ/brc/lisp/Mathematics.fas
;; Loading file /Users/matsu/SourceForgeJ/brc/lisp/Pronunciation.fas ...
;; Loaded file /Users/matsu/SourceForgeJ/brc/lisp/Pronunciation.fas
;; Loading file /Users/matsu/SourceForgeJ/brc/lisp/Hyphenation.fas ...
;; Loaded file /Users/matsu/SourceForgeJ/brc/lisp/Hyphenation.fas
;; Loading file /Users/matsu/SourceForgeJ/brc/lisp/debug.fas ...
NIL
;; Loaded file /Users/matsu/SourceForgeJ/brc/lisp/debug.fas
;; Loading file /Users/matsu/SourceForgeJ/brc/lisp/PrePostProcess.fas ...
;; Loaded file /Users/matsu/SourceForgeJ/brc/lisp/PrePostProcess.fas
;; Loading file /Users/matsu/SourceForgeJ/brc/lisp/Reader.fas ...
;; Loaded file /Users/matsu/SourceForgeJ/brc/lisp/Reader.fas
;; Compiling file /Users/matsu/SourceForgeJ/brc/lisp/Braille.lisp ...
;; Wrote file /Users/matsu/SourceForgeJ/brc/lisp/Braille.fas
;; Loading file /Users/matsu/SourceForgeJ/brc/lisp/Braille.fas ...
+++ Initializing language association list...
+++ Getting max lengths of text and braille in each vocabulary...
+++ Generating grade 2 US English dictionary...
+++ Generating grade 2 British English braille dictionary...
+++ Verifying grade 2 US English braille dictionary...
+++ Verifying grade 2 British English braille dictionary...
+++ Generating US English hyphenation dictionary...
+++ Generating British English hyphenation dictionary...
+++ Generating US URL list...
+++ Initialization of BrailleConverter was successfully completed.
;; Loaded file /Users/matsu/SourceForgeJ/brc/lisp/Braille.fas
0 errors, 0 warnings
;; Loaded file load.lisp
T
}}}