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

2
votes
3answers
80 views

Replace first occurrence of symbol in (possibly nested) list

I would like to replace just the first occurrence of a certain symbol (say '-) with another symbol (say '+) inside a list that may contain lists. That is to say, '(((-))) would turn into '(((+))) ...
1
vote
3answers
48 views

Scheme's “expected a procedure that can be applied to arguments”

I use DrRacket. I have problem with this code: (define (qweqwe n) ( (cond [(< n 10) #t] [(>= (lastnum n) ...
1
vote
1answer
32 views

Accessing MIT/GNU Scheme's REPL return value

Is there a symbol that is used to refer to the return value of the last evaluated expression in the MIT/GNU Scheme repl? For example: Python uses _ Haskell uses it
1
vote
1answer
141 views

MIT Scheme Message Passing abstraction Mailman procedure

I previously asked a question concerning message passing Abstraction here: MIT Scheme Message Passing Abstraction The question asked that I: Write a mailman object factory (make-mailman) that takes ...
1
vote
3answers
49 views

Intertwine two lists

How do I merge two lists that are equal length, creating a list of intertwined elements? For example, lists 2, 4, 6 and 1, 3, 5 should produce 2, 1, 4, 3, 6, 5 in racket. I am having a difficult ...
3
votes
1answer
68 views

Can I use Gambit-C, Mlton, or Chicken Scheme with Google's Native Client

Those functional language compilers can each compile a functional language to C code. Google's NaCl SDK can compile C. Is it reasonable to create Native Client applications by compiling first with ...
2
votes
1answer
48 views

How to convert sql-timestamp to string in Racket?

The closest thing I came up with looking at the documentation was (define (sql-datetime->rfc2822 datetime) (let ([dt (sql-datetime->srfi-date datetime)]) (date->string dt ...
0
votes
1answer
53 views

Selecting items from List-box in Scheme

There is a list-box which has three columns. I'm trying to get all the row of a index (item) which are selected. The problem is that i can't get the whole row. The following function returns just the ...
1
vote
2answers
292 views

MIT Scheme Message Passing Abstraction

In a Computer Science course I am taking, for homework, we were tasked with several different questions all pertaining to message passing. I have been able to solve all but one, which asks for the ...
2
votes
3answers
54 views

Recursive range in Lisp adds a period?

(define .. (lambda (start stop) (cond ((> (add1 start) stop) (quote ())) ((eq? (add1 start) stop) (sub1 stop)) (else (cons start (.. (add1 start) stop)))))) I have ...
0
votes
2answers
42 views

a strange error in racket “no expression after a sequence of internal definitions”

I have the following code: (define (play-loop strat0 strat1 strat2 game-limit) (define (play-loop-iter strat0 strat1 strat2 count history0 history1 history2 limit) (cond ((= count limit) ...
0
votes
3answers
53 views

random procedure wants exact integers in scheme

I am given a real number which is between 0 and 1. This is my niceness-factor. This factor is a kind of probability. I mean if it is 0.2, it means that something will be happen with the probability of ...
1
vote
1answer
41 views

Using cons, list, append in Scheme

I need to write a code that take a element and add to list that give as input, and return an new list instead of old list.. after than i will do recurssion and i need new list... below code is working ...
0
votes
1answer
29 views

Mit-scheme, recursion error with built-in filter function

(filter even? (numb-2tx 100000)) ;Aborting!: maximum recursion depth exceeded ;;numb-2tx generates a list from 2 to x, even for very large values of x (tested with 2000000) When I try to apply the ...
3
votes
4answers
63 views

How to write the following function in scheme

I am new to scheme and doing some exercises. I am trying to do the following: The function i am going to write takes one list parameter (no input check needed). Then it remoces multiple occurences of ...
-1
votes
1answer
35 views

How do you go through a tree in Scheme? [closed]

If I wanted to, for example, remove all the leaves from a tree, how do I go through the tree to find the leaves? Probably, have to use recursion, right?
0
votes
2answers
63 views

Scheme call/cc issue - implementing exit.

I am writing a program that needs to recursively analyze a list of "commands" and "programs" (it is an interpreter of some "robotic language" invented by our professor for a robot living in a maze). ...
1
vote
1answer
53 views

Reading from file, using Scheme

I'm trying to read from a file using scheme, and to put it's content into a list. The problem is how to remove the question mark, numbers, and just keeping the words. Should I use a loop to check ...
3
votes
2answers
56 views

How to decide the parantheses in scheme

I am a little bit confused about putting the parantheses in scheme. The following example: =>(define foo1 (lambda (n) (+ n 1))) =>(foo1 ((lambda () 5))) =>value:6 Gives the result 6. But ...
-1
votes
1answer
48 views

How to count the number of occurrences of each word in scheme

I'm trying to read a string from a text file; and to provide a "statistics" about the occurrence of each word using scheme and to provide the most used words. exp: string = "one two, tree one two" ...
0
votes
2answers
32 views

Scheme-modifying vector of vectors

I am a beginner programist. I have to write a simple program in pure Scheme that will print out a rectangle of given height and width (for example 4,6): 111111 100001 100001 111111 1 is a black ...
-1
votes
1answer
35 views

List to list of lists in Scheme

I am trying to do a log parser in scheme and I want idea on how to turn a list like this: '((a b c 1) (a e h 3) (d e f g 2) (d e i 4))) into this: '((a (b (c 1)) (e (h 3))) (d (e (f ...
1
vote
1answer
29 views

list procedure in Scheme

I am studying for an exam right now but I am not sure if I understood the list procedure in Scheme. I know that it can be used for creating list variables like (define x (list 'a 'b 'c)). However I ...
1
vote
1answer
49 views

Simply Scheme Chapter 09. Lambda. Any more Lambda exercises?

Greets, Reading Simply Scheme Chapter 09 and from what I can see, Lambda seems important. I'd like to practice it to the bone so I'm looking for beginner exercises (preferably non recursive) vis à ...
0
votes
2answers
27 views

Returning procedures values in Scheme

I try to call and take value of a procedure with code below (define main (x y) ((< x y) (p1 x) (p2 y))) (p1 x) returns 'first, (p2 y) returns 'second however in main there is nothing to return. ...
1
vote
3answers
45 views

How can i use the removing for the following in scheme?

I am given two lists in scheme and check whether we can form the one of them from the elements of the other. In other words, i check whether this is an . To do this, i implemented a function called ...
2
votes
2answers
40 views

How to remove a given symbol from a list?

I am trying to remove a given symbol from a list. Here is the code i wrote: (define member? (lambda (in-sym in-seq) (if (and (symbol? in-sym) (sequence? in-seq)) (if (null? in-seq) ...
3
votes
2answers
49 views

What is wrong with my code in determining palindrome in scheme?

I am trying to detect the palindrome lists in scheme. Here is my code: ;- Input : Takes only one parameter named inSeq ;- Output : It returns the reverse of inSeq if inSeq is a sequence. ; Otherwise ...
1
vote
2answers
44 views

Taking until nth element in Scheme

How can i take first nth element into another list ? for example first 4; (taking-first 4 list newlist) list: '(1 2 3 4 5 6) newlist: '(1 2 3 4) Thank you..
0
votes
1answer
33 views

Float Precision and Removing Rounding Errors in Scheme

I have a procedure that returns a float to three decimal places. >(gpa ’(A A+ B+ B)) 3.665 Is there any way to round this to 3.67 in Scheme? I'm using SCM version 5e7 with Slib 3b3, the ...
3
votes
4answers
45 views

How to determine whether an input is a sequence in scheme?

I am new to functional programming and trying to write a function that takes a list parameter and returns true if the list consists of symbols where each symbol is of length 1. More specifically, ...
2
votes
2answers
50 views

What is the difference between eq?, equal? and = in scheme?

I wonder what is the difference between those operations. I have seen similar questions in stackoverflow but they are about lisp, and there is not a comparison between three of those operators. So if ...
2
votes
1answer
18 views

How to implement symbol-length procedure in scheme

I am new to functional programming and trying to implement a procedure that returns the length of a symbol. Here is what i think: I give one parameter to it named "inSym" to return its length. ...
3
votes
1answer
25 views

Procedure? keyword in scheme

I am new to functional programming and I have a piece of code like the following: (procedure? (car (list cdr))) Value: #t I do not understand why this returns true. cdr is a procedure, but what is ...
0
votes
2answers
55 views

Scheme namespace use convention. Compared with Javascript

Had to learn javascript for a project, do not miss it one bit! (Though I recognize its use and scale of its impact, not only in the desktop, but server and mobile spaces likewise). One of the things ...
1
vote
2answers
42 views

Simply Scheme. Chapter 08. Higher—Order Functions

Greets, Summary having trouble passing '(+) or '(-) as data to a cond (non evaluated). On their own, they return (+) or (-) which, as an argument returns the identity element (0). HELP! ...
0
votes
1answer
35 views

decomposing a list of points in drRacket

I have a list of points with the form : ((1.10) (2.980) (3.567) (4.0)...(1000.87 )) And, to be able to use them in the function plot, I would like to extract the two sublist with the x and the y ...
3
votes
2answers
44 views

Modification of the basic if expression in Scheme. Why does it go into an infinite loop?

In Scheme, I modified the basic 'if' command as: (define (modified-if predicate then-clause else-clause) (if predicate then-clause else-clause)) And then I defined a simple factorial ...
1
vote
1answer
29 views

Scheme continuation unexpeded behavior

Here is my code. As I call continuation twice, I expect "world" be displayed twice. But it output only once. What am I missing? (define call-with-current-continuation call/cc) (define (repeat arg) ...
0
votes
1answer
49 views

Unbound Variables in Scheme

(define input (read-line)) (define lngth (string-length input)) (define first-char (string-ref input 0)) (define test-num (string->number (substring input 0 (- (string-search-forward " " ...
1
vote
3answers
34 views

Scheme remove from list

I need to remove a given digit from a list completely. This would be entered: (remove-digit 1 '(1 2 3 '(4556 1))) I need to return (2 3 (4556)) I can remove from the list with this code: (define ...
3
votes
1answer
24 views

Comparing lists in scheme

I wonder why the following piece of code gives the #f output: => (define a (cons 3 '())) => (define a (cons 3 '())) => (eq? a b) ;Value: #f When comparing the lists with eq?, do we look at ...
2
votes
3answers
42 views

What is caddar in scheme

I am trying to understand what caddar is in scheme. My notes say that it is a nested version of car or cdr, but it does not explain what combination it is. Here is a code and its output: =>caddar ...
1
vote
1answer
24 views

Compatibility issue with drRacket: “require” and “frame”

I wonder if my drRacket has a problem : I see example on the internet of programs but when I put them in Dr racket, it considers them as an error. It first append when I write (require racket/base) ...
0
votes
3answers
52 views

How do I create a list from a series of computed values (scheme)

I've created a function that gives a items in a list a certain score (define newlist '((score 'A ) (score 'A1 ) (score 'A2 ))) but cannot get it to return a ( X Y Z) list . Only ...
3
votes
1answer
89 views

Two-layer “Y-style” combinator. Is this common? Does this have an official name?

I've been looking into how languages that forbid use-before-def and don't have mutable cells (no set! or setq) can nonetheless provide recursion. I of course ran across the (famous? infamous?) Y ...
1
vote
0answers
20 views

How to open a file in another directory in ubuntu? [migrated]

I am in the home directory and i have a file called s0.scm. I cannot copy it to the folder i want since i do not have root capabilities. So, here is what i want to do. In the home directory, i run the ...
0
votes
1answer
42 views

How to start scheme? [closed]

I am very new to scheme and i am trying to open it to try some codes. Scheme is located at /usr/local/bin/scheme I am coming to the directory and writing scheme to start it but it does not ...
1
vote
2answers
49 views

how to use “cond” in scheme?

I am trying to implement a game theory algorithm by using scheme. I wrote a code piece which is named tit for two tat. Here is the code: (define (tit-for-two-tat my-history other-history) (cond ...
1
vote
2answers
53 views

Get the selected text-field% in a Racket GUI

I have an application that uses the The Racket Graphical Interface Toolkit to create a GUI. I also have a frame with several fields, that is created with the code below: #lang racket (require ...

1 2 3 4 5 52