Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

62
votes
5answers
13k views

Please explain some of Paul Graham's points on Lisp

I need some help understanding some of the points from Paul Graham's article http://www.paulgraham.com/diff.html A new concept of variables. In Lisp, all variables are effectively pointers. Values ...
38
votes
14answers
9k views

What's happening with Arc?

Arc, if you don't know, is Paul Graham's "100 year language", or, more prosaically, new version of Lisp. It was heavily trailed on reddit (back when reddit was interesting), and an early version was ...
8
votes
3answers
269 views

Compose example in Paul Graham's ANSI Common Lisp

Can anybody explain an example in Paul Graham's ANSI Common Lisp page 110? The example try to explain the use &rest and lambda to create functional programming facilities. One of them is a ...
6
votes
3answers
230 views

Strange Lisp Quoting scenario - Graham's On Lisp, page 37

I'm working my way through Graham's book "On Lisp" and can't understand the following example at page 37: If we define exclaim so that its return value incorporates a quoted list, (defun exclaim ...
3
votes
1answer
171 views

Writing an accumulator function in Clojure

I'd like to know how to write the accumulator example included in the Revenge of the Nerds essay. It's easy to understand how it works, however I fail to recreate it in Clojure - it doesn't accumulate ...
3
votes
3answers
206 views

Which Graham essay talks about not knowing if you're a good programmer? [closed]

I am trying to find Paul Graham's essay that mentions something to the effect of "hackers can't know if they're good". In it, he says he (with a seemingly false humility) says he himself doesn't even ...
2
votes
0answers
86 views

Why does format happen after read in this example from Paul Graham Book [closed]

Possible Duplicate: Lisp format and force-output I'm reading Paul Grahams book ANSI common lisp and on page 19 (haven't gotten far yet) there is an example that I tried in sbcl. (defun ...