Kind | Covered | All | % |
expression | 0 | 2 | 0.0 |
branch | 0 | 0 | nil |
1
;;; js/pkg.lisp --- Javascript Code Generator
2
3
;; Simple JS Codegen
4
5
;;; Commentary:
6
7
;; The current state-of-the-art in CL is Parenscript.
8
9
;; ref: https://parenscript.common-lisp.dev
10
;;; Code:
11
(defpackage :syn/gen/js
12
(:nicknames :genjs :js)
13
(:use :cl :syn/gen))
14
15
(in-package :syn/gen/js)