The Wayback Machine - https://web.archive.org/web/20201207121337/https://github.com/topics/common-lisp
Skip to content
#

Common Lisp

common-lisp logo

Common Lisp is a general-purpose programming language in the Lisp language family. Its syntax is defined on top of s-expressions, however it can be extended through the use of reader macros. It supports compile-time meta-programming through the use of macros. It supports the OOP paradigm through the Common Lisp Object System. The API upon which CLOS is implemented is exposed to the programmer so they can extent the object system. This API is refered as the Meta-Object Protocol. There are multiple implementations available: SBCL, which generates fast code, CCL, which compiles code fast, ABCL, which runs on the JVM, JSCL which runs on Node, and the browser, etc.

Here are 1,078 public repositories matching this topic...

Klipse is a Javacript plugin for embedding interactive code snippets in tech blogs. A simple client-side code evaluator pluggable on any web page: clojure, ruby, javascript, python, scheme, es2017, jsx, brainfuck, c++, reagent, lua, ocaml, reasonml, prolog, common lisp
  • Updated Sep 20, 2020
  • Clojure
mirkov
mirkov commented Nov 4, 2020

The example in the section on walking/traversing directories lists the arguments of the uiop:collect-sub*directories

It would be good to reorder the list in the order of this function's arguments like so:

  • a directory
  • a collectp function
  • a recursep function
  • a collector function

That will make the example more readable

john-a-carroll
john-a-carroll commented Apr 2, 2020

Text output to a stream pane results in scrolling only if the pane is the direct child of the scroll pane. If there are any intervening layout panes, scrolling does not happen. In the example below, we have a bordered application pane which should scroll when text reaches the end of the page.

(define-application-frame scrolling-frame () ()
  (:menu-bar scrolling-frame-command-table)
  (:pa
appleby
appleby commented Jan 26, 2020

It looks like the upcoming sbcl 2.0.1 release includes changes to move certain symbols out of cl:*features* and into sb-impl:+internal-features+ [[1]]. IIUC, any "non-public" features will continue to work (for now), but issue a warning [[2]].

I haven't tested it, but it looks like we use at least one such soon-to-be-deprecated feature, namely avx2. We should figure out what to do about

Created by X3J13

Released 1984

Website
common-lisp.net
Wikipedia
Wikipedia

Related Topics

language lisp
You can’t perform that action at this time.