This is an example for using SBCL as a custom runtime on AWS lambda. You can write AWS lambda function with Common Lisp. Normal lisp files, compiled fasls, and Roswell scripts are ready to use. You ...
An example of using Common Lisp (SBCL) as a custom runtime on AWS lambda - cdmojoli/cl-aws ...
XP provides efficient and flexible support for pretty printing in Common Lisp. Its single greatest advantage is that it allows the full benefits of pretty printing to be obtained when printing data ...
Lispが生まれたのは、プログラミング言語の1958年です。1958年と言えば、最初のプログラミング言語に数えられるFORTRANが登場して間もない頃です。人工知能研究の第一人者であるジョン・マッカーシーが開発しました。それで、Lispは人工知能研究で使われる ...
人間の思考に、 ことば――すなわち言語は欠かせないものです。考えごとをするときに、 ことばを使っていない人はいないでしょう。 さて、 僕達は今、 コンピュータを身近に感じる世界にいます。 コンピュータというのは、 ハードウェアとソフトウェア ...
Many Lisp functions can be defined in terms of other Lisp functions. For example, CAAR can be defined in terms of CAR as (defun caar (list) (car (car list))) It is then natural to ask whether there is ...