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

3
votes
3answers
61 views

Error with define in Racket

I just discovered Racket a few days ago, and I'm trying to get more comfortable with it by writing a little script that generates images to represent source code using #lang slideshow. I know that ...
1
vote
1answer
38 views

define-syntax issue in scheme

I'm wondering what is going wrong with how I'm defining my for-loop in scheme. Whenever I try running a for statement with it it runs for quite a while and then crashes. (define-syntax for ...
0
votes
1answer
33 views

Scheme: What does this function evaluate to?

(define test (lambda() (let* ((x 1) (y 3) (z 5) (foo (lambda (n) (let* ((x 3) (y (+ x n)) ...
0
votes
1answer
12 views

use all values in a list as arguments (scheme)

(define a_list (list 2 3 4)) (define (add x y z) (+ x y z)) (add a_list) Obviously this doesn't work, but what is the correct way to do this? What I want to do is to use a random ...
2
votes
2answers
39 views

creating a procedure which takes list as an argument

I am a newbie in scheme and I am trying to write a procedure which always finds a list's tail's first element. This is important in recursive calls. Here is my procedure : (define second (lambda ...
2
votes
1answer
37 views

Lisp Program producing contract violation

I wrote a lisp program that takes two parameters, a destination, and a map in the form of a BST. It searchings the BST for the destination number, and prints (found: path) if the destination is found. ...
0
votes
1answer
35 views

(scheme) How to substract lists of unary numbers?

i'm making a function that substracts two lists that contain unary number ( l l l = 3 or l l l l = 4) So, it needs to do this: ~(usub '(l l l l) '(l l)) (l l) Right now, i have a function that ...
0
votes
2answers
52 views

Where is the recursion in this code?

I'm studying Scheme by myself and recently I've encountered this code: ((lambda (gcd) (gcd (12 8 gcd)) (lambda(a b gcdnew) (if (= b 0) a (gcdnew b (modulo a b) gcdnew)))) ...
0
votes
1answer
39 views

Need a little help for this scheme “leet-speak”

I wrote a program below for "Define a procedure leet-speak takes a string and returns the result of changing all s's to fives, all e's to threes, all l's to ones, and all o's to zeros. Do not write ...
1
vote
1answer
35 views

count elements from within a nested list in scheme

I am trying to count elements from within a nested list in scheme, and rank them in order of frequency. For example I have a listP which looks like this '((1 3 6)(1 4 7)(1 5 8)(2 5 7)) and I want ...
1
vote
1answer
38 views

Searching through BST in Lisp

I'm writing a program that directs a robot down a BST to the goal number. The program has two input parameters, a destination as an integer, and a map that represents all the paths the robot can ...
0
votes
3answers
97 views

Lisp prefix calculator

How can I write a calculator to prefix notation, when it should count this example '(+ * 3 2 - 2 1), where there are no brackets between characters? When I have the brackets, I can handle it, but in ...
-6
votes
1answer
36 views

How to inserts an item to the right of all elements that match? [duplicate]

How to inserts an item to the right of all elements that match? scheme with the argument e. (insert-right new e lis) (insert-right 'N c '(a b c d e c f)) => '(a b c N d e c N f)
-3
votes
0answers
22 views

How to make equivalent recursive algorithm, to work on lists different depths? scheme language [closed]

How to make equivalent recursive algorithm, to work on lists different depths? scheme language (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)))
-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)
1
vote
2answers
39 views

How can I stop reading input when a specific character is entered?

I am trying to implement my own subtract function in Scheme. I have to use the apply method to apply subtraction to the user's input. The thing is, the user input must be between (), [], or {} (I'm ...
1
vote
2answers
67 views

Simply Scheme Exercises. Chapter 06 True and False

Greets, I'm new to SO so please take care of me. Exercise 6.1 in Simply Scheme has the expression: (cond (empty? 3) (square 7) (else 9)) My mind says it should evaluate (square 7) and ...
1
vote
3answers
70 views

how to create nested loop in scheme

I am new to scheme and I am trying to create nested loops whose code in C will look like this:- for(i = -1, a = 0; i > -5, a < 5; i--, a++) { for(j = i, b = 0; j < (abs(i)), b < 5; ...
2
votes
2answers
54 views

I am trying to recursively sum integers input by the user

I am brand spanking new to scheme. To the extent that tonight is the first time I've ever played around with it aside from what a powerpoint slide explained to me in class. I have to write a scheme ...
0
votes
1answer
32 views

How does one use the read function in Scheme? I know how it works syntactically, but the console doesn't let me enter values

I think I'm confused about how Scheme works with user input. I want to just read some values from the console that the user inputs as the script runs. For example, if I wanted to add a user's value ...
1
vote
1answer
34 views

Scheme (DrRacket) - cond statement does not work with recursion

I am learning Scheme using DrRacket R5RS. I thought that I was nailing down the concepts, but I cannot get this simple recursion exercise to work. I think that it is a bug in DrRacket, but I'm not ...
1
vote
1answer
28 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
57 views

what's wrong with this simply 'buggy-sum' code?

I have an exam tomorrow, and this was an assignment question I got wrong. I've been stuck on this for a while, can someone tell me what the solution is? The problem is, how do you fix this code: ...
5
votes
1answer
190 views

Functional Programming: a look at program design from the top down? [closed]

I've scoured the internet trying to learn as much about FP as possible to see how well the paradigm suits me. All the examples I find are minimally helpful because they talk about FP in the small. I ...
3
votes
3answers
89 views

Racket with-hash macro and rename transformers

I created this: (define-syntax (with-hash stx) (syntax-parse stx [(_ obj:id ((~or key:id [new-key:id hash-key:id]) ...) body:expr ...+) #'(let ([key (hash-ref obj 'key)] ... ...
2
votes
2answers
40 views

Racket scheme define constant in function

I am beginer to scheme. I have function like this: (define (getRightTriangle A B N) ( cond [(and (integer? (sqrt (+ (* A A) (* B B)))) (<= ...
2
votes
1answer
75 views

How to compile & run programs written in T (a dialect of Lisp)

I wanna compile and run a program written in the T programming language (a dialect of Lisp) during the years of 1980s. I checked the T Project but it seems only applicable to VAX machines (and ...
0
votes
1answer
53 views

Where is the error in this Scheme program?

I am getting "Error: Invalid lambda: (lambda (insert-all))." (define permutations (lambda (L) (let ((insert-all (lambda (e Ls) (let ((insert-one (lambda (L) (letrec ...
0
votes
1answer
44 views

Manipulating the Scheme evaluator

I'm trying to manipulate the Scheme evaluator and write a make-unbound! procedure that unbinds a variable from the environment: (define (make-unbound! var env) (let ((frame (first-frame env))) ...
1
vote
3answers
65 views

How can I attach a type tag to a closure in Scheme?

How can I attach an arbitrary tag to a closure in Scheme? Here are a couple things I'd like to use this for: (1) To mark closures that provide an interface to produce a string for what they ...
1
vote
2answers
36 views

Scheme Help - File Statistics

So I have to finish a project in Scheme and I'm pretty stuck. Basically, what the program does is open a file and output the statistics. Right now I am able to count the number of characters, but I ...
-1
votes
0answers
33 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 ...
3
votes
2answers
52 views

Drawing onto canvas% element

I have a problem while trying to draw onto a canvas GUI element. I create a frame, a canvas and try to draw on the dc context of the canvas with the draw-line method, but nothing happens. The frame ...
1
vote
2answers
42 views

scheme' conditional expression and evaluation order

thinking following expression: (cond (p1 (some_complex_expression1)) (p2 (some_complex_expression2)) (p3 (some_complex_expression3)) ... (else (some_complex_expressionN))) ...
1
vote
1answer
29 views

Going from pseudocode to scheme

key <-5381 for each character c in w do key <-33.key + ctv(c) end for This is pseudocode for a key function that is to be implemented in scheme but for the life of me I cant figure out how to ...
1
vote
1answer
39 views

scheme nested recursive functions returning void

Still fighting the urge to not think of programming imperatively, playing around here I have a list of procedures that should be applied to each item in a list and the result of each should be added ...
0
votes
0answers
103 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 ...
3
votes
2answers
48 views

How to use foldr in scheme?

When you use foldr, the procedure you use has 2 arguments, the current value of the list and the accumulator. Let's say the list you iterate over is a list of list of numbers, all the same length. ...
1
vote
2answers
52 views

Currying functions in Scheme using macros

I'm learning about the macro system in Scheme and I thought implementing curried functions would be a good start. This is what I cooked up: (define-syntax function (syntax-rules () ((_ () ...
3
votes
1answer
61 views

File Stats in Scheme

I'll be upfront: this is Homework. But scheme is an impressively hard language to learn in a week, I'm thrilled that I have gotten this far. (define stats (lambda (srcf) (begin (define in ...
3
votes
2answers
47 views

The complexity of Scheme vectors

The 6.3.6 Vectors section in the Scheme R5RS standard states the following about vectors: Vectors are heterogenous structures whose elements are indexed by integers. A vector typically occupies ...
2
votes
2answers
58 views

Using let variables in a lambda in Scheme

This question is similar in scope to: In R6RS Scheme, is there a way to get the current environment for use with eval? but I'd like to take it a step further and ask how you'd remedy something like ...
0
votes
1answer
22 views

I cant seem to find a newline matching character in scheme

I'm attempting to find the new line character in a file and keep track of it with a counter so far i have srcf is the source file (if(equal? (peek-char srcf) (#\newline) ) (begin (read-char ...
0
votes
3answers
37 views

Scheme: reverse is not taking any affect

(define key (lambda (w) (reverse w) (if (null? w) 0 (let ((k 33)) (+ (* (ctv(car w)) k) (key (cdr w))) )))) outputs the same thing as this: (define key (lambda (w) ...
0
votes
1answer
57 views

Scheme car passing incorrect type?

My assignment is to make a scheme function that takes in two files, a "mainfile" and a "wordfile". The function then counts the number of lines, words, and characters in the mainfile. Words are ...
2
votes
1answer
61 views

Using call/cc to make a loop. let vs begin

Both of the following code blocks should (in my mind) be infinite loops This works (define call/cc call-with-current-continuation) (define l 0) (define i 0) ((lambda () (call/cc (lambda (k) ...
0
votes
1answer
22 views

GNU Guile SCM to char*

I am relative new to FFI and GNU Guile, and I am writing bindings to a library that heavily uses char* variables. Here is code from function, that wraps C function: static inline char* ...
0
votes
2answers
82 views

seek for some explanation on SICP exercise 1.5

The question can be found here. In the book, I found one description of normal order evaluation was: "An alternative evaluation model would not evaluate the operands until their values were needed. ...
2
votes
1answer
94 views

Scheme functions with lists

Let me begin with, I'm a beginner at scheme. Also this is based on HW so I'm not looking for an answer but an explanation of what's going on here. Here goes: So I have a function that I need to ...
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 ...

1 2 3 4 5 52