Scheme is a functional programming language in the Lisp family, closely modelled on lambda calculus with eager (applicative-order) evaluation.

learn more… | top users | synonyms

67
votes
10answers
5k 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 ...
15
votes
2answers
635 views

Y combinator discussion in “The Little Schemer”

So I've spent a lot of time reading and re-reading the ending of chapter 9 in The Little Schemer, where the applicative Y combinator is developed for the "length" function. I think my confusion boils ...
1
vote
3answers
652 views

Flatten a list using only the forms in “The Little Schemer”

I'm going through The LIttle Schemer to learn Scheme (as an old C programmer) and as an exercise I tried to write a procedure to flatten a list using ONLY the forms in the little schemer. I.e. ...
84
votes
23answers
16k views

What's the best way to learn LISP? [closed]

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 ...
28
votes
3answers
3k 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 ...
12
votes
7answers
2k views

In Scheme, how do you use lambda to create a recursive function?

I'm in a Scheme class and I was curious about writing a recursive function without using define. The main problem, of course, is that you cannot call a function within itself if it doesn't have a ...
11
votes
9answers
2k views

Functional Programming: what is an “improper list”?

Could somebody explain what an "improper list" is? Note: Thanks to all ! All you guys rock!
56
votes
20answers
6k 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 ...
49
votes
16answers
13k views

Lisp Web Frameworks?

What are the popular (ok, popular is relative) web frameworks for the various flavours of LISP?
29
votes
5answers
8k 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?
32
votes
6answers
3k 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 ...
10
votes
2answers
522 views

conda, condi, conde, condu

I'm reading the Reasoned Schemer. I have some intuition about how conde works. However, I can't find a formal definition of what conde/conda/condu/condi do. I'm aware of ...
18
votes
7answers
1k views

Separate Namespaces for Functions and Variables in Common Lisp versus Scheme

Scheme uses a single namespace for all variables, regardless of whether they are bound to functions or other types of values. Common Lisp separates the two, such that the identifier "hello" may refer ...
1
vote
4answers
7k views

How to Reverse a List?

What is the function to a list in Scheme? It needs to be able to handle nested lists. So that if you do something like (reverse '(a (b c d) e)) you'll get (e (b c d) a) as the output. How should I ...
74
votes
33answers
14k 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 in serious ...
36
votes
6answers
1k 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: ...
45
votes
9answers
4k views

Why is the Lisp community so fragmented? [closed]

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 ...
48
votes
13answers
8k 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 ...
18
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 ...
32
votes
21answers
6k 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 ...
18
votes
8answers
2k views

Practical use of curried functions?

There are tons of tutorials on how to curry functions, and as many questions here at stackoverflow. However, after reading The Little Schemer, several books, tutorials, blog posts, and stackoverflow ...
15
votes
10answers
5k views

Learning LISP/Scheme - Interpreter

I've been making my way through The Little Schemer and was wondering what environment/ide/interpreter would be best to use in order to test any of the Scheme code I jot down for myself. Thanks
1
vote
2answers
1k views

Best First Search algorithm in Scheme

Okay this is a homework question, and I just don't have a clue how I suppose to start. Some help and hints will be much appreciated. I need to use a heuristic function to solve a maze type problem. ...
0
votes
2answers
84 views

How I Append An Element in N Position on a List

I don't know how I can append an element in n position in a list. For example: (insert-at new k lis) (insert-at ’N 2 ’(a b c d e f)) => ’(a b N c d e f) It is ok?: (define (insert-at new k lis) ...
-6
votes
0answers
39 views

How to inserts an item to the left of all the elements that match with the argument e? [duplicate]

How to inserts an item to the left of all the elements that match with the argument e? (insert-left new e lis) (insert-left 'N c '(a b c d e c f)) => '(a b N c d e N c f)
71
votes
12answers
26k 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?
35
votes
11answers
3k 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 ...
40
votes
17answers
7k 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 ...
39
votes
5answers
9k 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 ...
31
votes
5answers
2k 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
4answers
4k 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?
23
votes
3answers
5k views

Dr Racket problems with SICP

I'm working through SICP. Currently, in the first chapter, I'm having problems getting Racket to let me redefine "primitives". For instance, I was under the impression that I should be able to ...
20
votes
4answers
2k views

How does the yin-yang puzzle work?

I'm trying to grasp the semantics of call/cc in Scheme, and the Wikipedia page on continuations shows the yin-yang puzzle as an example: (let* ((yin ((lambda (cc) (display #\@) cc) ...
20
votes
10answers
979 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 ...
10
votes
3answers
3k views

Which language in DrScheme for SICP?

I have been using the Module for SICP in DrScheme 4.2 but which language has the best support for SICP in DrScheme? Has anyone here tried this? Thanks.
9
votes
3answers
1k views

What is the exact definition of a Metacircular Interpreter?

Is it legal to call a C compiler written in C or a PHP interpreter written in PHP metacircular? Is this definition valid only for languages of a specific type, like Lisp? In short, what are the ...
9
votes
3answers
2k views

Why doesn't C# have lexically nested functions?

Why might the C# language designers not have included support for something like this (ported from Structure and Interpretation of Computer Programs, second ed., p. 30): /// <summary>Return the ...
7
votes
4answers
11k views

Loop in PLT Scheme

How can I implement loop in plt-scheme like in java- for(int i=0;i<10;){ for(int j=0;j<3;){ System.out.println(""+j); j++; } System.out.println(""+i); ...
16
votes
6answers
2k views

What is a 'thunk', as used in Scheme or in general?

I come across the word 'thunk' at a lot of places in code and documentation related to Scheme, and similar territories. I am guessing that it is a generic name for a procedure, which has a single ...
7
votes
3answers
547 views

Running SICP Pattern Matching Rule Based Substitution Code

I have found the code from this lesson online (http://groups.csail.mit.edu/mac/ftpdir/6.001-fall91/ps4/matcher-from-lecture.scm), and I am having a heck of a time trying to debug it. The code looks ...
10
votes
5answers
5k views

What is ' (apostrophe) in Lisp / Scheme?

I am on day 1 hour 1 of teaching myself Scheme. Needless to say I don't understand anything. So I'm reading The Little Schemer and using this thing: http://sisc-scheme.org/sisc-online.php as an ...
6
votes
5answers
5k views

How do I take a slice of a list (A sublist) in scheme?

Given a list, how would I select a new list, containing a slice of the original list (Given offset and number of elements) ? EDIT: Good suggestions so far. Isn't there something specified in one of ...
3
votes
1answer
331 views

Does adding f-exprs simplify the implementation of macros from fundamental expressions in LISP?

This guy reckons that adding fexprs to LISP dramatically simplifies the implementation of the language in scheme. Here we see how macros would be implemented using MacCarthy's LISP. My question is ...
8
votes
11answers
1k views

Kernighan & Ritchie word count example program in a functional language

I have been reading a little bit about functional programming on the web lately and I think I got a basic idea about the concepts behind it. I'm curious how everyday programming problems which ...
6
votes
1answer
608 views

Mauritus national flag problem

I've made a solution for the Dutch national flag problem already. But this time, I want to try something more difficult: the Mauritus national flag problem - 4 colours, instead of 3. Any suggestions ...
5
votes
6answers
503 views

In SICP exercise 2.26 using DrScheme, why does cons return a list, instead of a pair of lists?

In SICP exercise 2.26, this Scheme code is given: (define x (list 1 2 3)) (define y (list 4 5 6)) Then this cons call is given: (cons x y) I expected a pair of lists would result, ((1 2 3) (4 5 ...
2
votes
3answers
9k views

How to delete an element from a list in scheme

how to delete an element from a list ex:- list=[1 2 3 4] I have come up with some code.I think I got wrong somewhere. (define delete item (lambda (list) (cond ((equal?item (car list)) cdr ...
6
votes
4answers
2k views

Convert string to code in Scheme

How do I convert a string into the corresponding code in PLT Scheme (which does not contain the string->input-port method)? For example, I want to convert this string: "(1 (0) 1 (0) 0)" into ...
5
votes
2answers
83 views

Confused by the difference between let and let* in Scheme

Can anyone explain the difference simply? I don't think I understand the concept from the textbooks/sites I have consulted.
5
votes
2answers
989 views

Including an external file in racket

I would like to include all the functions defined in a given racket file so that I get the same effect as if they were copied. Is it possible to do that?

1 2 3 4 5