src/parenscript/compiler.lisp @ 8f91275f1233

Add Huffman tree encoding and generation
author Steve Losh <steve@stevelosh.com>
date Tue, 23 Aug 2016 21:59:37 +0000
parents 277982735a9d
children 184af4c4e8fc
(in-package #:sand.parenscript)

(defun compile-parenscript-file (source)
  (let* ((source-path (pathname source))
         (target-path (make-pathname :type "js"
                                     :defaults source-path)))
    (with-open-file (output target-path
                            :direction :output
                            :if-exists :supersede)
      (write-string (ps-compile-file source-path) output)))
  (values))