我正在關注麻省理工學院的SICP講座,而這正是我試圖通過亞歷山大方法的Heron找到一個數的平方根近似值。這是我第一次嘗試lisp,很抱歉做出了noobie錯誤。 (define guess 1)
(define (avg a b)
(/ (+ a b) 2))
(define (try guess x)
(if (goodEnough guess x)
g
我有(load "foo.import.scm")當我編譯一切工作,只要我從同一個目錄執行程序。否則,它抱怨不能夠找到 「foo.import.scm」 Error: (open-input-file) cannot open file - No such file or directory: "foo.import.scm"
,如果我做 csc -s foo.scm -emit-import