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

5
votes
1answer
108 views

Seasoned Schemer get-first, get-next, and waddle

(define get-first (lambda (l) (call-with-current-continuation (lambda (here) (set! leave here) (waddle l) (leave (quote ())))))) (define get-first (lambda (l) ...
5
votes
1answer
482 views

(fluxus) learning curve

I'm trying to have some fun with fluxus, but its manual and online docs all seem to assume that the reader is already an expert network programmer who's never heard of Scheme before. Consequently, you ...
3
votes
1answer
222 views

Scheme- using continuations

So I THINK I understand how continuations basically work in Scheme, but I'm having trouble figuring out how to use it instead of recursion. We are given working code for make-matcher (just basic ...
3
votes
1answer
322 views

How to enable native threads support in Bigloo Scheme in OS X?

I am trying to compile Bigloo Scheme from source and I cannot figure out how to enable native thread support via ./configure in OS X 10.5 (Leopard) (and I haven't read anywhere that threading is not ...
2
votes
1answer
64 views

Command line syntax checker for Racket / Scheme

I'm looking for a command-line tool to check the syntax of my Racket / PLT-Scheme code. The purpose of this is to build a syntax-checker for Syntastic Vim plugin. Has anybody heard of a way?
2
votes
1answer
62 views

Working on interpreters text — how do I manage code dependencies between exercises?

I'm working through a text on Scheme interpreters (EOPL1). Most of the problems involve implementing a feature or modifying an existing implementation. Some of the problems are dependent on previous ...
2
votes
1answer
180 views

bigloo scheme “make test” fails for pthreads

I am trying to build from the bigloo scheme's latest source 3.8a on a Linux Mint 12 (lisa), which is Ubuntu 11 (Oneric) derivative: Here is my "configure": ./configure --enable-pthread ...
2
votes
1answer
237 views

What are the differences between Bigloo and ECL from an embedding standpoint?

I've been looking to embed Lisp in some C++ code. Two options I'm interested in is Bigloo Scheme and ECL (Common Lisp). Reading through the docs they seem to support a very similar feature set. ...
2
votes
1answer
174 views

What's the difference between these two schemes code (macro)

I try to understand by playing around with some code I found in MIT-Scheme documentation. one piece of code about sc-macro-transformer: (define-syntax let1 (sc-macro-transformer ...
2
votes
1answer
284 views

Any decent scheme implementation that has *no* threading libs?

I am considering which scheme to use. I would like to use a scheme that has or can be compiled to have no threading support. I have to avoid the layers that threading libs provide. I want an ...
1
vote
1answer
25 views

Memory footprint of racket data and datastructure

Has anyone got any idea if there is a function that returns the size of some datastructure, sys.getsizeof in python is an example, in racket?
1
vote
1answer
25 views

Evaluate arithmetic infix operators

I need to write a program with the following criteria: Returns either a value or the word "ERROR" Returns a value if it is called with a list that contains: A single number, or` An "ADD" ...
1
vote
1answer
58 views

How transform-painter works in the picture language in SICP

In the picture language in SICP I'm having trouble understanding how the transform-painter procedure works: (define (transform-painter painter origin corner1 corner2) (lambda (frame) (let ((m ...
1
vote
1answer
64 views

Scheme storing the result of a function (Let)

(define [DML vara] (cond ((atom? (car vara)) (cond ((eqan? (car vara) 'N) (display (cdr vara))) (else (negate vara))) ))) I'm currently trying to save the ...
1
vote
1answer
145 views

modulo vs bitwise op

Which of the following methods is more efficient ( in Scheme, but I guess it doesn't matter)? (The objective is to get the least significant bit) (define (lsb n) (- n (bitwise-and n (- n 1)))) ...
3
votes
0answers
257 views

Is there any real on-device developing tools on Android?

I am recently became interested in on-device developing on Android, and have tried ASE, JRuby, and AndroidForth. The ASE seems use a Java RPC server as the backend, and I got random errors when I am ...
2
votes
0answers
152 views

“Eval in REPL” command not doing anything for Scheme in SublimeREPL

I'm attempting to use SublimeREPL with Sublime Text 2 as a Scheme environment. I have Gauche installed and can successfully launch a REPL window and run code from it. However, I can't figure out how ...
2
votes
0answers
310 views

Does the Church programming language work on Windows?

Has anyone gotten the Church programming language to work on Windows? I followed the directions here and I wasn't able to run the examples in the tutorial in any obvious way. I used ikarus although ...
1
vote
0answers
5 views

Stop and copy garbage collector in two phases

When implementing a stop and copy garbage collector as a pair, I need two memory banks (the old one and a free new one). One memory bank consists of the-cars and the-cdrs. So basicly when I make a new ...
1
vote
0answers
52 views

Static signature for higher order function in Bigloo Scheme

Does anyone know how to create a static signature for a higher order function in the module export section in the Bigloo Scheme language? Here is how far I got (module test (export (adder ...
1
vote
0answers
75 views

Alt/Option key as meta on Mac for Racket GUI

I saw this thread: http://lists.racket-lang.org/users/archive/2010-August/041085.html I'm just wondering whether the problem has been solved..
1
vote
0answers
142 views

racket/scheme web monitoring program crash always

I made the following web monitoring program, but it always crashes. I wonder what's going wrong. there is no error. the program just freezes when I click the button. I am on windows xp sp3. I run ...
1
vote
0answers
95 views

HtDP / Chpt. 5: How do I use “symbol=?”? (Scheme)

I'm currently working through HtDP on my own. In Chapter 5 "Symbolic Information" is covered. The example in the text is: (define (reply s) (cond [(symbol=? s 'GoodMorning) 'Hi] [(symbol=? ...
1
vote
0answers
185 views

Adding multiple with arguments and function arguments to scheme CFWAE/L

This is what I have so far and I'm pretty sure that it works. The binop of course is set to accept +,-,*,and/. A reasonable amount of this code is from the PLAI book. I just need some help figuring ...
1
vote
0answers
227 views

Scheme, recursion with list of lists

I have a little problem with my procedure. This procedure take a list of lists and while his length is bigger then 1 apply a procedure minus that take 2 lists and do difference.its my result to a ...
1
vote
0answers
149 views

Parallel MySQL access with Scheme/Ypsilon engines

I'm trying to achieve parallell MySQL access with Scheme engines (light threads, as I've come to understand it). My problem is, I don't know how to interact with C properly, thus can't take care of ...
1
vote
0answers
80 views

little human like text searching program in scheme

I am trying to make little human like text searching program in scheme but this program doesn't work properly time to time and I can't catch the bug for many hours could somebody tell me what's ...
1
vote
0answers
99 views

Extending the Charme Interpreter By Adding Primitives

I need to extend the Charme (download here, described here) interpreter by adding primitive procedures cons, car and cdr that behave similarly to the primitive Scheme procedures. To start I need to ...
1
vote
0answers
283 views

Appclitive and Normal order in Scheme

I have difficult to understand the difference between Normal order and Applicative order. In the next code: (define a 2) (define goo (lambda (x) (display x) (lambda (y) (/ x y)))) ...
1
vote
0answers
1k views

Minimax operations on nested lists in Scheme/Racket/Lisp?

I'm trying to write a function to analyze game trees. The trees are represented by nested lists where each sub-list represents a branch. Basically, there are two things I want to figure out: what is ...
1
vote
0answers
155 views

Pattern matching error in Scheme

I have written a function match-rewriter that is just match-lambda except that it returns its argument if no match is found. match-rewriter is part of a larger function. Here is a portion of the ...
1
vote
0answers
229 views

Scheme continuation restarting in weird place

UPDATE: So the issue seems to be with the generator, and not necessarily with the next-token and lookahead functions. I added some display calls around where the set!s were happening, and found that ...
1
vote
0answers
251 views

Scheme Editor prog

i am trying to develop an editor in Scheme (DrRacket) passing lists into the structures. I handled all the functions of an editor like the keystrokes, backspace, left and right etc but i am not ...
0
votes
0answers
47 views

make-lambda function alternative in racket

I am learning scheme by reading SICP. One function in SICP measured is (make-lambda ...) I am using Racket as the scheme interpreter. However Racket doesn't have make-lambda function built in. ...
0
votes
0answers
95 views

(scheme) How to calculate energy of a pixel? (seam carving)

So, I have to make a function that finds the energy of a pixel using this: Given an image, we first compute the "energy" of each pixel, which measures how much that pixel stands out from its ...
0
votes
0answers
39 views

Five elements of abstraction scheme

What are the five elements of abstraction for scheme when creating a new abstract data type such as "set" or "point-list?" I know two. 1) primitive data elements 2) mutators I think the remaining ...
0
votes
0answers
24 views

Why is `process` not available in a library using Petite Chez Scheme?

I am writing an R6RS library to use the GTK Server with Petite Chez Scheme. I use process to start the server process and get its stdin and stdout ports: (let ((ports (process "gtk-server ...
0
votes
0answers
45 views

[SCHEME][GIMP] How create a new directory / folder?

I write a script-fu into Gimp whith scheme langage and i am looking for a method that would allow me to create a new folders without going through the "SF-DIRNAME" command. Advance thanks.
0
votes
0answers
103 views

How to determine if 2 segments intersect in Scheme

For 2 segments, I have both the X and Y-position of the begin and end position. Is there an easy way to determine if these 2 segments intersect using a Scheme function? My coordinates are represented ...
0
votes
0answers
113 views

DrRacket recursive functions

I'm having a problem with part d of this function. We're trying to add a friend to a list of friends on a user's profile if the profile does not already contain the friend. The problem arises in the ...
0
votes
0answers
58 views

DrRacket error while debugging scheme

During playing with scheme in drracket (5.3.2 on win7), quite big problem occured. After few days I started to use debuggin tool, it was splendid while finding errors, but it doesn't work anymore on ...
0
votes
0answers
16 views

Jam HDRPATTERN for scheme load expressions

I am trying to use some scheme files for code generation as a part of my jamfiles for building a project. I have it "working" in the sense that my scheme files get evaluated as a part of the build ...
0
votes
0answers
56 views

How to perform benchmarking in scheme?

I am looking to test various Scheme constructs for comparison purposes and was wondering how to go about doing so. I know Ruby has a dedicate module for such benchmarking and a web search does not ...
0
votes
0answers
60 views

Scheme project structure

we define a designer first. (define vect cons) (define segm (lambda (depart arrivee) (list depart arrivee))) (define mon-dessinateur (lambda (T) (list (segm (T (vect -0.5 -0.5)) (T (vect 0.5 ...
0
votes
0answers
88 views

image-processing in scheme

Here's my homework question, I am very close with my code (see it below), but something is slightly off. Assume the maximum distance that a paint blob can travel (due to gravitational force) is given ...
0
votes
0answers
59 views

call/cc scheme exit and re-enter recursion

Almost working call/cc question! So I have been working with call/cc trying to get some simple exit and reenter recursive code to work, and I feel quite close, check out the following: (define return ...
0
votes
0answers
155 views

GIMP Script-Fu: Multiplication (*) Error: not enough arguments

I'm currently trying to just make a small tweak to a GIMP script, but for some reason multiplication just doesn't seem to work. After aggressive debugging I've isolated the problem to multiplication, ...
0
votes
0answers
142 views

Load files in Scheme

I have a function, it name is "hello" in file which call "World.scm". When I'm doing (display hello), it is giving me the output: hello. Now, I have another scm file, which is name: "Hello100.scm". ...
0
votes
0answers
183 views

Turning list-of-lists into set of lists in scheme?

Is there a general way to take a list of items and flatten it to depth zero? Eg: ((+ 1 2) (+ 3 4) (+ 4 5)) -> (+ 1 2) (+ 3 4) (+ 4 5)
-1
votes
0answers
32 views

(scheme) How do I find the index of an element in a matrix?

I have a function that finds the min value in a matrix but what I want is the index of that value. How can I do that? (define (m-min mat min1) (let cloop ([c 0]) (if (< c (sub1 (matrix-cols ...

1 2 3