Tagged Questions
Scheme is a functional language in the Lisp family.
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 ...
55
votes
30answers
10k views
Lisp in the real world
I have experimented with Lisp (actually Scheme) and found it to be a very beautiful language that I am interested in learning more about. However, it appears that Lisp is never used serious projects, ...
54
votes
23answers
9k views
What's the best way to learn LISP?
I have been programming in Python, PHP, Java and C for a couple or years now, and I just finished reading Hackers and Painters, so I would love to give LISP a try!
I understand its totally diferent ...
52
votes
9answers
3k views
Why exactly is eval evil?
I know that Lisp and Scheme programmers usually say that eval should be avoided unless strictly necessary. I’ve seen the same recommendation for several programming languages, but I’ve not yet seen a ...
43
votes
12answers
14k views
Common Lisp or Scheme? [closed]
Which would you recommend learning, CL or Scheme? What are the pros and cons of each, compared to each other?
42
votes
19answers
5k views
Suitable functional language for scientific/statistical computing?
I use mostly R and C for statistics-related tasks. Recently
I have been dealing with large datasets, typically 1e7-1e8
observations, and 100 features. They seem too big for R too
handle, and the ...
41
votes
13answers
9k views
Lisp Web Frameworks?
What are the popular (ok, popular is relative) web frameworks for the various flavours of LISP?
39
votes
13answers
7k views
Lisp and Erlang Atoms, Ruby and Scheme Symbols. How useful are they?
How useful is the feature of having an atom data type in a programming language?
A few programming languages have the concept of atom or symbol to represent a constant of sorts. There are a few ...
37
votes
11answers
12k views
What is the best Scheme or LISP implementation for OS X?
I am looking for a version of Scheme or even LISP that I can use to recover some lost Lisp development skills. Some web capabilities would be nice but not essential.
I've looked at Plt and MIT ...
35
votes
11answers
2k views
Editing programs “while they are running”? Why?
I've been getting more into Lisp and Lispy languages lately, and I'm finding them quite powerful.
One thing I've been reading all over the net is that a benefit of writing in Lisp, Clojure, etc, is ...
35
votes
9answers
2k views
Why is the Lisp community so fragmented?
To begin, not only are there two main dialects of the language (Common Lisp and Scheme), but each of the dialects has many individual implementations. For example, Chicken Scheme, Bigloo, etc... each ...
34
votes
15answers
3k views
What's a good beginning text on functional programming?
I like to study languages outside my comfort zone, but I've had a hard time finding a place to start for functional languages. I heard a lot of good things about Structure and Interpretations of ...
32
votes
11answers
4k views
How I Can do web programming with Lisp or Scheme?
I usually write web apps in PHP, Ruby or Perl. I am starting the study of Scheme and I want to try some web project with this language. But I can't find what is the best environment for this.
I am ...
31
votes
18answers
4k views
Which Lisp should I learn?
To piggyback on http://stackoverflow.com/questions/59428/learning-lisp-scheme-interpreter,
O gods of StackOverflow:
Which Lisp (dialect) should I learn, and why?
The fragmentation between CL and ...
29
votes
9answers
2k views
Why programming competition contestants use C++ and Java?
After competing in and following this year's Google Code Jam competition, I couldn't help but notice the incredible number of [successful] contestants that used C/C++ and Java. The distribution of ...
28
votes
7answers
4k views
What is the closest thing to Slime for Scheme?
I do most of my development in Common Lisp, but there are some moments when I want to switch to Scheme (while reading Lisp in Small Pieces, when I want to play with continuations, or when I want to do ...
26
votes
12answers
2k views
How to implement continuations?
I'm working on a Scheme interpreter written in C. Currently it uses the C runtime stack as its own stack, which is presenting a minor problem with implementing continuations. My current solution is ...
25
votes
5answers
1k views
Lazy Evaluation vs Macros
I'm used to lazy evaluation from Haskell, and find myself getting irritated with eager-by-default languages now that I've used lazy evaluation properly. This is actually quite damaging, as the other ...
25
votes
5answers
880 views
Collection of Great Applications and Programs using Macros
I am very very interested in Macros and just beginning to understand its true power. Please help me collect some great usage of macro systems.
So far I have these constructs:
Pattern Matching:
...
24
votes
20answers
4k views
Are there people using scheme out there?
Hey,
I have just started to study computer sciences at the university where they teach us programming in scheme.
Since i have learned c++ for the last 6 years, scheme appears a little odd to me. But ...
23
votes
3answers
973 views
Why did father of Clojure say that Scheme's true/false are broken?
In this video, Rich Hickey introduced Clojure for Lisp programmers.
At time 01:10:42, he talked about nil/false/end-of-sequence/'() among Clojure/Common Lisp/Scheme/Java. He said: "Scheme has true ...
23
votes
18answers
3k views
Which language would you use for the self-study of SICP?
I've caught the bug to learn functional programming for real. So my
next self-study project is to work through the Structure and
Interpretation of Computer Programs. Unfortunately, I've never
learned ...
22
votes
5answers
2k views
Can I use Common Lisp for SICP or is Scheme the only option?
Also, even if I can use Common Lisp, should I? Is Scheme better?
21
votes
5answers
1k views
How many primitives does it take to build a LISP machine? Ten, seven or five?
On this site they say there are 10 LISP primitives.
The primitives are: atom, quote, eq, car, cdr, cons, cond, lambda, label, apply.
http://hyperpolyglot.wikidot.com/lisp#ten-primitives
Stevey ...
21
votes
4answers
2k views
Why does Clojure have “keywords” in addition to “symbols”?
I have a passing knowledge of other Lisps (particularly Scheme) from way back when. My knowledge is pretty rusty (and was pretty basic to begin with). Recently I've been reading about Clojure. I see ...
21
votes
3answers
2k views
What is point free style in Functional Programming?
A phrase that I've noticed recently is the concept of "point free" style...
First, there was this question, and also this one.
Then, I discovered here they mention "Another topic that may be worth ...
20
votes
13answers
1k views
Would Lisp be extremely difficult for a new(ish) programmer to learn?
I've got a little experience with Python (enough to where I can do if/else/elif and some random number generation), but I've always had a weird fascination with the Lisp languages. I downloaded some ...
20
votes
6answers
791 views
What is the difference between 1 and '1 in Lisp?
I had never really thought about whether a symbol could be a number in Lisp, so I played around with it today:
> '1
1
> (+ '1 '1)
2
> (+ '1 1)
2
> (define a '1)
> (+ a 1)
2
The above ...
20
votes
5answers
3k views
Web development: Haskell or Scheme
I would like to to choose one of these languages for building web applications. I'm not interested in framework per se, but have the following needs:
Rapid development.
Easy to scale.
Strong ...
19
votes
4answers
787 views
Are there any fairly mature Lisp/Scheme/Clojure compilers for .Net CLR?
I am seeing several variants out there; ClojureCLR, LSharp, IronScheme, IronLisp, among others. Are any of these actively maintained and/or anywhere close to "mature", or are they mostly experiments ...
19
votes
2answers
934 views
Help understanding Continuations in Scheme
I have been working alongside The Little Schemer to learn Scheme and using PLT-Scheme for my environment.
The Little Schemer has helped me tremendously with recursion (it is straightforward for me ...
18
votes
5answers
3k views
How is Racket different Than Scheme?
Racket is a descendant of Scheme. How is Racket different than R6RS? What did it add, or take away, or is just different?
I'm understanding that Racket is more than a language, it's a platform for ...
17
votes
10answers
739 views
“Functional programming” has a clear meaning, but does “functional language”?
I understand very clearly the difference between functional and imperative programming techniques. But there's a widespread tendency to talk of "functional languages", and this really confuses me.
Of ...
17
votes
13answers
1k views
Learning a Lisp variant? Suggestions?
I ultimately want to learn Clojure, but I've found learning resources for Clojure to be scarce for people of little experience...
I'm wondering if it would be beneficial to start with Scheme (read ...
17
votes
4answers
2k views
Is Clojure closer to Scheme or Common Lisp from a beginner's perspective?
If I want to learn Clojure, should I start by learning Scheme or Common Lisp?
Or is Clojure different enough from both of these, that I should just start learning Clojure by itself?
17
votes
2answers
812 views
What Lisp is better at parsing?
I'd like to implement a Lisp interpreter in a Lisp dialect mainly as a learning exercise. The one thing I'm thrown off by is just how many choices there are in this area. Primarily, I'm a bit more ...
17
votes
9answers
2k views
What is call/cc?
I've tried several times to grasp the concept of continuations and call/cc. Every single attempt was a failure. Can somebody please explain me these concepts, ideally with more realistic examples than ...
17
votes
13answers
2k views
Looking for examples of “real” uses of continuations
I'm trying to grasp the concept of continuations and I found several small teaching examples like this one from the Wikipedia article:
(define the-continuation #f)
(define (test)
(let ((i 0))
...
16
votes
6answers
231 views
Use of OR as branch control in FP
I undertook an interview last week in which I learnt a few things about python I didn't know about (or rather realise how they could be used), first up and the content of this question is the use of ...
16
votes
3answers
639 views
When did the idea of macros (user-defined code transformation) appear?
I have read McCarthy's 1960 paper on LISP and found no reference to anything that's similar to user-defined macros or normal order evaluation. I was wondering when marcos first appeared in programming ...
16
votes
11answers
3k views
In Which Cases Is Better To Use Clojure?
I develop in Lisp and in Scheme, but I was reading about Clojure and then I want to know, in which cases is better to use it than using Lisp or Scheme? Thanks
16
votes
9answers
1k views
Can a compiled language be homoiconic?
By definition the word homoiconic means:
Same representation of code and data
In LISP this means that you could have a quoted list and evaluate it, so (car list) would be the function and (cdr ...
15
votes
3answers
585 views
What are the advantages of scheme macros?
Why would anyone prefer Scheme macros over Common Lisp macros (and I genuinely want to know too, I'm not trying to be a troll)?
My experience as a Lisp newb is that Common Lisp style macros are much ...
15
votes
11answers
3k views
Does anyone use the Scheme programming language for a living?
I started learning Scheme for fun, and was wondering if anyone uses it for a living as a prime programming language... or even as an additional tool to the programming arsenal? If so, what do you use ...
15
votes
15answers
3k views
How do you type lisp efficiently, with so many parentheses?
I try to keep my fingers on home row as much as possible.
Typing all the parentheses makes me move away from there a fair bit.
I use Emacs; the parentheses themselves are no issue, I'm comfortable ...
15
votes
5answers
5k views
What is the best Scheme implementation for working through SICP?
I have been using PLT Scheme, but it has some issues. Does anyone know of a better implementation for working through SICP?
14
votes
1answer
246 views
Other references to how the Stalin compiler brutally optimizes?
J.M. Siskind's research statement states:
Stalin is an optimizing compiler for Scheme that performs whole-program static analysis and uses the results of that analysis to generate extremely ...
14
votes
3answers
284 views
Is there a lint for Common Lisp or Chicken Scheme?
Something akin to C's splint, Haskell's HLint, Perl's B::Lint, etc.?
14
votes
4answers
744 views
Clojure vs other Lisps [closed]
The intent of my question is not to start a flame war, but rather to determine in what circumstances each language is "the best tool for the job."
I have read several books on Clojure (Programming ...
14
votes
5answers
719 views
What are some compelling use cases of infinite data structures?
Some languages (Haskell, Clojure, Scheme, etc.) have lazy evaluation. One of the "selling points" of lazy evaluation is infinite data structures. What is so great about that? What are some examples of ...