Questions tagged [lisp]

Lisp is a (family of) general purpose programming language(s), based on the lambda calculus, and with the ability to manipulate source code as a data structure.

Introduction

The name LISP derives from "LISt Processing". It was originally created as a practical mathematical notation for computer programs. See wikipedia for more information.

Hello World Program in Lisp

;;; Hello World in Common Lisp

(defun helloworld ()
  (print "Hello World!"))

Popular dialects

Free Lisp Programming Books

16 questions
0
votes
1 answer

SBCL Delete Key on Mac Giving ^?

I am using SBCL Lisp on a Mac Pro Mavericks. When I run the sbcl command and drop into the interpreter the delete key prints ^? instead of deleting the last character. Does anyone have a remedy for this issue?
ZenBalance
  • 2,029