😸
スクリプトを読み込んで REPL に入る
スクリプトを読み込んでから Gauche の REPL に入る方法です。
$ cat test.scm
(define x 100)
(define (add a b)
(+ a b))
$ gosh -l ./test.scm
で読み込むスクリプトを指定します。
$ gosh -l ./test.scm
gosh> x
100
gosh> (add x 2)
102
スクリプトを読み込んでから Gauche の REPL に入る方法です。
$ cat test.scm
(define x 100)
(define (add a b)
(+ a b))
$ gosh -l ./test.scm
で読み込むスクリプトを指定します。
$ gosh -l ./test.scm
gosh> x
100
gosh> (add x 2)
102
Discussion