Questions tagged [lisp]

Lisp is a family of general purpose programming languages, influenced by the lambda calculus, and with the ability to manipulate source code as a data structure.

Introduction

The name Lisp derives from "LISt Processor". 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

There is also a Stack Overflow chat room and Stack Overflow Documentation page on Lisp.

4 questions
14
votes
2 answers

What is the install routine for Common Lisp/ SLIME/SBCL/Quicklisp on Ubuntu?

I'd like to install above recommended Common Lisp package. What is the best routine to install it on Ubuntu?
empedokles
  • 3,843
  • 15
  • 44
  • 68
2
votes
1 answer

What is the install routine for Common Lisp / SLIME/SBCL?

Can someone give me a detailed install procedure for Common Lisp / SLIME / SBCL on Ubuntu?
empedokles
  • 3,843
  • 15
  • 44
  • 68
1
vote
0 answers

Problems when installing common-lisp-controller

I Tried this: nuc ➜ ~ sudo apt install common-lisp-controller Reading package lists... Done Building dependency tree Reading state information... Done Suggested packages: darcs The following NEW packages will be installed: …
macbug
  • 11
  • 2
0
votes
1 answer

Installing fricas in LISP

I am looking at the tutorial for installing lisp. I am at the part on "Step by step instructions for first time users:" I have already used subversion to get the sources. I think I now need to use lisp. I am told to run the command: …
user398186