shithub: sl

ref: c2026ba77cad42c4cb4b277dd80061c53d79361c
dir: /femtolisp/mkboot0.lsp/

View raw version
; -*- scheme -*-

(if (not (bound? 'top-level-value)) (set! top-level-value %eval))
(if (not (bound? 'set-top-level-value!)) (set! set-top-level-value! set))

(load "compiler.lsp")

(define (compile-file inf)
  (let ((in  (file inf :read)))
    (let next ((E (read in)))
      (if (not (io.eof? in))
	  (begin (print (compile-thunk (expand E)))
		 (princ "\n")
		 (next (read in)))))
    (io.close in)))

(for-each (lambda (file)
	    (compile-file file))
	  (cdr *argv*))