Scheme is a functional programming language in the Lisp family, closely modelled on lambda calculus with eager (applicative-order) evaluation.
1
vote
1answer
16 views
Running Chicken Scheme in emacs
I am new to emacs and cannot figure out how to run Chicken Scheme through emacs. From the Chicken Scheme Wiki I came across a solution -- using cluck. So, I followed the directions in the cluck.el ...
0
votes
0answers
9 views
Code works in stk-simply but not in mit-scheme
I have been reading from the courses CS61A (Spring 2011) from Berkeley Opencourseware and MIT 6.001 from OCW. One uses STk (called as stk-simply) and the other uses mit-scheme as programming language ...
1
vote
5answers
53 views
How is set! defined in scheme?
How would you implement your own set! function in Scheme? A set! function is a destructive procedure that changes a value that is defined taking into account the previous value.
0
votes
2answers
37 views
Getting an error while interpreting lambda in scheme
I am trying to interpret lambda in scheme. Here is my code:
(define get-operator (lambda (op-symbol)
(cond
((equal? op-symbol '+) +)
((equal? op-symbol '-) -)
((equal? op-symbol '*) *)
...
3
votes
2answers
37 views
andmap and null? returning false
I want to determine whether a list contains only null. null? seems like the obvious choice:
> (null? null)
#t
But andmaping over it is not doing what I'd expect:
> (andmap null? '(null))
#f
...
-1
votes
1answer
31 views
What is wrong with this interpreter of “let” in scheme?
I am trying to write interpreter for "let" statement using scheme according to the following grammar:
<let> -> ( let ( <var_binding_list> ) <expr> )
<var_binding_list> ...
2
votes
2answers
42 views
Applying “let” in scheme?
I am trying to write an interpreter for scheme. So far i implemented define, if and some arithmetic expressions. Here is the grammar for my interpreter:
<s6> -> <expr>
| ...
1
vote
3answers
33 views
Custom function for length of a list in Scheme?
My lecturer has provided the following code:
(define (length list)
(cond (( null ? list) 0 )
(( atom ? list) 1 )
( else
( + 1 ( length (cdr list))))
However it wouldn't compile and Scheme kept ...
1
vote
1answer
26 views
Implementing an interpreter for “if” statement in scheme
I am trying to implement an interpreter in scheme. For now i implemented some part of it, but i am having problems with "if" statement. Here is the grammar:
<s6> -> <expr>
| ...
-4
votes
0answers
40 views
How to install SRFI-19 with Chicken 4.8.0.3? [closed]
How can I install SRFI-19 with Chicken 4.8.0.3? Using sudo chicken-install srfi-19 fails.
After some experimentation, I found I needed to run sudo chicken-install setup-helper first, yet I remain ...
0
votes
2answers
38 views
Passing multiple variables (image->color-list) as a procedure argument RACKET
I am trying to create a procedure which will accept two colour-lists. Because this procedure is within another procedures(local). I need to convert image->color-list as I am passing the arguments. I ...
2
votes
2answers
39 views
How to express let* as a lambda expression (not the regular let)
I have a scheme related question, how can we implement let* as a lambda expression. To be more precise, I am not wondering about the "regular" let, but the let with * which lets us use one let ...
5
votes
2answers
41 views
Issue an HTTP GET from REPL in Racket
I feel like I'm missing something, but after perusing the docs for net/url and poking around in general, I was unable to figure out a way to issue a GET request from the interactive prompt. Basically, ...
2
votes
5answers
46 views
Scheme, Check if anything in two lists are the same
Is it possible to check two list against each other if anything is the same in them?
(check-list '(hey cookie monkey) '(apple pizza cookie) ==> #t
I tried something like
(define (check-list list ...
1
vote
1answer
36 views
Simple Nested Evaluations in DrRacket
so I'm working on some practice problems for my programming languages class, and one of the assignments is to create a script "MyEval" which allows you to do simple nested addition and multiplication. ...
0
votes
2answers
34 views
Regular addition or multiplication operators in scheme
How can I write a scheme program that makes regular sums. In scheme 2+2 is written (+ 2 2). The program I have to make should make (2 + 2) possible is scheme.
-2
votes
0answers
24 views
Scheme : Check if there are more than 2 sublist in a row Altlis and altlis2 in
I'm supposed to define Altlis and I believe the altlis2 should check that there are no more than two sublist or no more than two subatoms in a row. If it is then it returns false If it has atom, list ...
1
vote
1answer
30 views
How to implement call-with-values to match the values example in R5RS
R5RS says...
Values might be defined as follows:
(define (values . things)
(call-with-current-continuation
(lambda (cont) (apply cont things))))
It doesn’t, however, say how ...
0
votes
0answers
38 views
Records search function
I have a problem with my medical database in Scheme. I want to write a function that takes X symptoms and searches through my database for a match with a diagnose.
This is what I've done so far:
...
-2
votes
0answers
33 views
Programming a (medical) database in scheme [closed]
Me and my friend have a problem regarding a database project in scheme we're currently working on, we're creating a database that's supposed to help with giving a patient a correct/or close to correct ...
4
votes
4answers
121 views
Why does not exist a primitive `call-with-current-continuations` in Common Lisp?
Lately I've been investigating the differences between Scheme and Common Lisp regarding the approach that these two languages have towards continuations.
I've noticed that the Common Lisp approach ...
2
votes
1answer
61 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?
2
votes
3answers
55 views
GUI Table using in Racket / variable parameters using list-box%
I'm currently trying to create a a grid of information in Racket using the Racket Graphical Interface Tooling. The only real table that is available is the list-box% (link to reference)
To fill the ...
1
vote
2answers
52 views
Scheme / Racket Vector in Vector tranformation
I'm having a problem transforming a vector like this:
#(#(1 2 3)#(1 2 3)#(1 2 3)#(1 2 3)#(1 2 3)))
Into one like this:
#(#(1 1 1 1 1) #(2 2 2 2 2) #(3 3 3 3 3))
I wrote a piece of test code but ...
3
votes
2answers
39 views
DrRacket EOPL Scheme output
I am working through the EOPL Scheme exercises using DrRacket in Windows 7. When I switch from #lang racket to #lang eopl, the output from the definitions pane no longer shows up in the interaction ...
2
votes
2answers
62 views
What Racket function can I use to insert a value into an arbitrary position within a list?
I know this is trivial to implement, but I want Racket to live up to it's "batteries included" promise. I am looking for a function that works something like this:
> (define (between lst item ...
3
votes
1answer
65 views
Idiomatic Nested looping in racket/scheme
Has anyone got any idea what the idiomatic method for nested looping on numbers within a range is in Racket/Scheme? In Python we have:
for i in range(numb1):
for j in range(numb2):
What would ...
0
votes
1answer
30 views
Calling scheme function from Java using kawa, but half the returned list is omitted and replaced by three dots (…)
I wrote the following scheme function, which works as expected when called in Dr Racket, but only returns half of the result when called using kawa.
(define getYValues (lambda (f base lst)
...
1
vote
3answers
88 views
how to write a scheme program consumes n and sum as parameters, and show all the numbers(from 1 to n) that could sum the sum?
How to write a scheme program consumes n and sum as parameters, and show all the numbers(from 1 to n) that could sum the sum? Like this:
(find 10 10)
((10)
(9 , 1)
(8 , 2)
(7 ...
1
vote
2answers
49 views
Binary tree inorder traversal Racket
I am trying to write the algorithm for inorder traversal for a binary tree using RACKET/DR. RACKET
(define (print-records node number)
(cond
[(not (empty? node-left))(print-records ...
1
vote
3answers
46 views
Scheme sequencing
I am new to Scheme and I am trying to familiarize myself with the language by reading Structure and Interpretation of Computer Programs. I am a bit confused about sequencing.
First, I understand ...
0
votes
2answers
67 views
Equivalent to SRFI 42's :while in Racket's comprehensions
The eager comprehensions in SRFI 42 can have a :while clause that runs a generator while some condition holds, for example: (list-ec (:while (:range i 10) (< (* i i) 50)) i) returns the list (0 1 2 ...
1
vote
1answer
33 views
Scheme lambda expression in Scheme
Can Some one help explain why
(define gg (lambda (ff x) (ff x x x))
has all of these properties? Thanks
gg requires two arguments when called
gg's first argument should be a function
gg's first ...
1
vote
2answers
37 views
confused about improper lists in Scheme
I was wondering why
'((atom1) . atom2)
is the improper List out of the following selections
'(atom1 . (atom2))
'((atom1) . atom2)
'(atom1 atom2)
(cdr '(atom1))
(cons 'atom1 '(atom2))
-2
votes
2answers
88 views
scheme features compared to lisp [closed]
Now, by Church-Turing thesis all comp languages are equivalent, however I was curious if Scheme has feature(s) that are not present Lisp and those feature(s) cannot be trivially implemented in LISP. ...
0
votes
0answers
72 views
What is a metaobject and are there any examples of how it is used? [closed]
From wikipedia: The Art of the Metaobject Protocol (AMOP) is a 1991 book by Gregor Kiczales, Jim des Rivieres, and Daniel G. Bobrow on metaobject protocol. It contains an explanation of what a ...
1
vote
0answers
88 views
How closely related are aspect-oriented programming to macros? [closed]
I've heard the term 'aspect oriented programming' tossed around for a long time... I'm still confused... However, it seems to me that the general definition of an aspect is that you can take an ...
1
vote
3answers
58 views
explanation of lambda expression in scheme
I was wondering if anyone could explain this lambda expression and how the output is derived. I put it into the interpreter and am getting ((2) 2). I'm just not sure why it's giving me that instead ...
1
vote
2answers
35 views
Accessing a variable field within a node
Hi I am new to Racket using it for a binary tree structure.
Using the following structure
(define-struct human(age hight))
I have created the following object/variable/human
(define ...
1
vote
1answer
49 views
Changing a function into CPS style
We were asked to write a procedure that when given a list it will replace the first occurrence of a given element and only the first, but the catch is to write in CPS style.
We were able to write in ...
-1
votes
2answers
62 views
SICP example doesn't work on Racket
I am trying an example on Chapter 4 of SICP (part of writing the LISP interpreter)
(define (definition-value exp)
(if (symbol? (cadr exp))
(caddr exp)
(make-lambda
...
1
vote
2answers
42 views
Understanding objects with local state — Scheme
i'm studying for my scheme final and objects with local state has always been a tough subject.
Here is a question from my final exam that i need help on.
(define (make-incrementer n)
(let ((old 0)
...
0
votes
1answer
31 views
Looping over a list and generate serial statements in a lambda
I have a macro called compare-and-swap!:
(define-macro (compare-and-swap! l x y)
`(if (> (vector-ref ,l ,x) (vector-ref ,l ,y))
(vector-swap! ,l ,x ,y)))
It works, I'm testing it like ...
0
votes
0answers
48 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
1answer
30 views
Scheme: When to use let, let*, and letrec? [duplicate]
What is the difference between let, let*, and letrec?
Please give thorough explanations and examples.
8
votes
4answers
124 views
scheme continuations for dummies
For the life of me, I can't understand continuations. I think the problem stems from the fact that I don't understand is what they are for. All the examples that I've found in books or online are very ...
-4
votes
1answer
40 views
scheme language ( extract and mix of cards)
Please can anyone help me with this functions as fast as possible
They are in scheme language
write the function extraire_ieme_cartes that retrieves the ith card of a list of cards given as a ...
-1
votes
2answers
77 views
Scheme doing more than one job in one if condition
I am trying to do more than one task in one if condition, here is my code:
(define (dont-tolerate-fools hist0 hist1 hist2 count)
(cond ((> 10 count) 'c)
((< 10 count) (soft-tit-for-tat ...
1
vote
0answers
173 views
Can every recursive function be rewritten using tail calls? [duplicate]
Can every recursive function be rewritten using tail calls? If not, what are examples of recursive functions for which this can't be done?
1
vote
2answers
65 views
How to implement a try-catch block in scheme?
I'm trying to implement a try-catch block in scheme using (call-cc) method but i'm not sure how it can be used for that. I could not find any example.
And found examples contains just error-handling ...




