😸

スクリプトを読み込んで REPL に入る

2020/09/24に公開

スクリプトを読み込んでから 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