1
1
mirror of https://github.com/kanaka/mal.git synced 2024-09-20 01:57:09 +03:00
mal/elisp/step1_read_print.el
Vasilij Schneidermann 0195b0cea7 Implement step 1
2016-02-28 21:21:49 +01:00

59 lines
1.5 KiB
EmacsLisp

(defun load-relative (file)
(let* ((current-file (or load-file-name buffer-file-name))
(current-file-directory (file-name-directory current-file)))
(load (expand-file-name file current-file-directory) nil t)))
(load-relative "types.el")
(load-relative "reader.el")
(load-relative "printer.el")
(defun READ (input)
(read-str input))
(defun EVAL (input)
input)
(defun PRINT (input)
(pr-str input t))
(defun rep (input)
(PRINT (EVAL (READ input))))
(defun readln (prompt)
;; C-d throws an error
(ignore-errors (read-from-minibuffer prompt)))
(defun println (format-string &rest args)
(if (not args)
(princ format-string)
(princ (apply 'format format-string args)))
(terpri))
(defun main ()
(let (eof)
(while (not eof)
(let ((input (readln "user> ")))
(if input
(condition-case err
(println (rep input))
(end-of-token-stream
;; empty input, carry on
)
(unterminated-sequence
(let* ((type (cadr err))
(end
(cond
((eq type 'string) ?\")
((eq type 'list) ?\))
((eq type 'vector) ?\])
((eq type 'map) ?}))))
(princ (format "Expected '%c', got EOF\n" end))))
(error ; catch-all
(println (error-message-string err))
(backtrace)))
(setq eof t)
;; print final newline
(terpri))))))
(main)