1
vote
2answers
18 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. ...
3
votes
4answers
94 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
2answers
58 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 ...
1
vote
3answers
81 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 ...
-2
votes
2answers
85 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. ...
1
vote
0answers
86 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
votes
2answers
61 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
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. ...
8
votes
4answers
120 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 ...
1
vote
0answers
172 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?
2
votes
2answers
61 views

scheme pattern checking if it is a number

I am a scheme beginner and I am wondering how to explain this piece of scheme code? Looks so preculiar! (define (calc2 exp) (match exp [(? number? x) x])) ...
1
vote
5answers
57 views

Converting an s expression to a list in Scheme

If I have an s expression, for example '(1 2 (3) (4 (5)) 6 7), how would I convert that into a list like (1 2 3 4 5 6 7)? I basically need to extract all of the atoms from the s expression. Is there a ...
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 ...
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 ...
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
1answer
32 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 ...
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! ...
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 ...
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 ...
3
votes
2answers
91 views

not using garbage collector in Scheme/Lisp implementation

For my class project, I have to implement a (simple) Scheme compiler. At this point I am brainstorming how I'd implement various features. Why typical Scheme implementations bother with a ...
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 ...
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. ...
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
95 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 ...
1
vote
2answers
66 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
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: ...
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 ...
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 () ((_ () ...
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. ...
0
votes
1answer
73 views

scheme higher order func

Given the skeleton of a function: (define gen-hash-division-method (lambda (size))) as well as: (define hash-1 (gen-hash-division-method 701)) What I have coded: (define ...
0
votes
2answers
47 views

Error during expansion of macro in Chicken Scheme

I'm learning how the macro system in Scheme works and I'm trying to make my code look more JavaScript-y. So I thought I would start with the function macro. This is how I want a function definition to ...
3
votes
3answers
64 views

What does the pipe character do in Racket?

The reader interprets | in a special way, however I cannot find any documentation on it. Does anyone have any idea what this symbol means to Racket?
2
votes
1answer
101 views

How do I find the index of an element in a list?

This is trivial implement of course, but I feel there is certainly something built in to Racket that does this. Am I correct in that intuition, and if so, what is function?
2
votes
1answer
46 views

Procedure works as intended but error message still shows up

I've been attempting to learn programming with the book "Structures and Interpretation of Computer Programs. To do the exercises I've been using DrRacket (I couldn't find a scheme interpreter for ...
5
votes
2answers
98 views

Church Numerals convert to int without language primitive

Is it possible to convert a church numeral to an integer representation without using a language primitive such as add1? All the examples I've come across use a primitive to dechurch to int Example: ...
3
votes
2answers
87 views

How can I make a Racket reader macro to transform any instance of one character into two other characters?

More specifically, I need any instance of | to be transformed into \|. I tried reading the documentation on reader macros and I am extremely lost. Can somebody explain this in understandable terms, or ...
0
votes
2answers
58 views

Scheme: Cond “not equal”

I'd like to do this in scheme: if ((car l) != (car (cdr (order l))) do something in particular I wrote this: ((eq? (car l) (car (cdr (order l))) ) (cons (count (car (order l)) (order l)) ...
0
votes
1answer
52 views

How to add to embedded list in scheme?

I'm trying to generate a symbol table in scheme and I'm stuck on the set-symbol function. The number corresponds to the block level of the code or "scope". First symbol it reads in ((c class 0)) Next ...
2
votes
1answer
61 views

Scheme - Can a Double-Quote Delimit a Number?

I'm currently implementing a web-based Scheme environment for the kicks and giggles. Whilst implementing the parser, I stumbled across an oddity: some Scheme implementations state that a number's ...
2
votes
4answers
101 views

is this function tail recursive?

in racket, i define the following function and am wondering whether it is tail recursive: (define foo (λ (c m s1 s2) (if (< c m) (if (= (modulo m c) 0) (foo (+ c 1) ...
2
votes
4answers
119 views

which one is tail recursion?

i see both of the following functions are syntactically tail recursive ones, but, in racket, which of them is really treated as tail recursion, or both? i mean whether it is optimized as tail ...
-1
votes
1answer
87 views

scheme procedure to navigate a character in a game [closed]

I need to write a procedure for a school contest for a little game to find a treasure in the minimum numbers of steps (or display that the treasure is unapproachable) in Scheme. I need some advice: ...
3
votes
2answers
68 views

What is the difference between defining a function inline or not?

I'm working through the book Structure and implementation of computer programs and in one of the chapters there were some code used to calculate the factorial of a number: (define (factorial n) ...
3
votes
5answers
140 views

Standard way for breaking out of recursion in scheme

I am writing my first program in scheme. I get pretty deep into recursion because I basically interpret a program for a simple robot which can have nested procedure calls. If I find a violation I ...
2
votes
3answers
75 views

Rest argument , zero or one argument procedures in racket

I have this procedure: (define count-calls (let ((count 0)) (lambda char (cond ((null? char) (begin(set! count (+ 1 count)) count)) ...
0
votes
3answers
96 views

Emacs config script for Lisp

What are some of the choices for pre-made Emacs config scripts? e.g. Lisp-centric keybindings, auto-complete / "intellisense", bracket matching, code formattting, etc. So far I've only found: ...

1 2 3 4 5 10