LISP: Difference between revisions

From OLPC
Jump to navigation Jump to search
No edit summary
mNo edit summary
Line 7: Line 7:
(found [http://bc.tech.coop/blog/080111.html here]).
(found [http://bc.tech.coop/blog/080111.html here]).


You also probably want Emacs and [http://www.cliki.net/SLIME Slime]. The combo of Emacs, Slime, and SBCL makes a pretty decent Lisp environment, although it is not yet clear what you can do with it.
You also probably want [[Emacs]] and [http://www.cliki.net/SLIME Slime]. The combo of Emacs, Slime, and SBCL makes a pretty decent Lisp environment, although it is not yet clear what you can do with it.
su
su
yum install emacs
yum install emacs

Revision as of 18:19, 21 May 2008

Summary: You can run a full-blown Lisp on the laptop, but we haven't yet hooked it into the graphics and other capabilities of the system.

Steel Bank Common Lisp is available by typing (in the Terminal activity):

su
yum install sbcl

(found here).

You also probably want Emacs and Slime. The combo of Emacs, Slime, and SBCL makes a pretty decent Lisp environment, although it is not yet clear what you can do with it.

su
yum install emacs
wget http://common-lisp.net/project/slime/slime-2.0.tgz
tar xvzf slime-2.0.tgz

Start emacs via

emacs -nw

Edit ~/.emacs to include:

(add-to-list 'load-path""~/slime-2.0/")
(require 'slime)
(setq inferior-lisp-program "/usr/bin/sbcl")
(slime-setup)

Then

M-x slime

will give you a Lisp listener


This package may make it possible to access Python libraries from Lisp.

These packages allow access to GTK bindings from Lisp.

DrScheme Scheme (Lisp) is available here.

Whether or not LISP is appropriate for children is up to both the teachers and the children.


See also: Scheme