Parenscript is a translator from an extended subset of Common Lisp to JavaScript. Parenscript code can run almost identically on both the browser (as ...
Parenscript is the CL's answer to the ClojureScript. It makes possible to write client-side code in Lisp and compile it to the Javascript for running in the ...
React examples in Parenscript. Contribute to l04m33/parenscript-react-examples development by creating an account on GitHub.
Sep 27, 2015 · As mentioned before, we have two Parenscript functions. One handles the initial event and the other handles the callback from the server. I'll ...
Jul 14, 2019 · People may use Parenscript when they want to compile Common Lisp code to Javascript. That's what it's for. So, the domains people use it in are limited.
The :source keyword is used to export an object or portions of an object in the current namespace. Examples: (export (a b c) :from "./module.js") (export (a b c) ...
May 18, 2024 · Parenscript itself is (basically) just a function that takes code and spits out a JS string, so there's not really a development environment ...
Missing: example | Show results with:example
May 27, 2020 · I am trying out Parenscript. While trying to experiment with regex function, I get unexpected output. for example, the reference manual shows:
Oct 15, 2019 · For example, the Parenscript WITH-SLOTS is implemented using symbol macros: (defpsmacro with-slots (slots object &rest body) `(symbol ...
Sep 16, 2020 · I know that ps is a macro and is the reason to not evaluate, but how to can I evaluate the code to passing to ps macro? macros · common-lisp ...