Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
6answers
497 views

Can someone explain the concept of 'hygiene' to me (I'm a scheme programmer)?

So... I'm new to scheme r6rs, and am learning macros. Can somebody explain to me what is meant by 'hygiene'? Thanks in advance.
5
votes
2answers
83 views

In R6RS Scheme, is there a way to get the current environment for use with eval?

Is there any way in R6RS Scheme to obtain the current environment and then pass it as the second argument to eval? For example, what should the question marks be for the following expression to ...
5
votes
6answers
564 views

Scheme pass-by-reference

How can I pass a variable by reference in scheme? An example of the functionality I want: (define foo (lambda (&x) (set! x 5))) (define y 2) (foo y) (display y) ;outputs: 5 Also, is ...
4
votes
2answers
56 views

Platform (OS) detection in scheme

That must be something like that : (if (= system-type 'gnu/linux) (system "make")) To be honest I think my scheme implementation even can't do it in anyways but I'm free to add realization for ...
4
votes
1answer
359 views

R6RS vs. R5RS scheme

I'm relatively new to scheme and am having a hard time finding a concrete document online overviewing the major changes that happened with R6RS. Anyone care to elaborate?
3
votes
2answers
266 views

Advantages of different Scheme R6RS implementations

I'd like to start programming in Scheme but the variety of different implementations is confusing. What are some advantages or disadvantages of various implementations?
3
votes
1answer
151 views

Scheme: Using only R6RS, how do I determine a flonum's mantissa and exponent

Is this possible to extract mantissa and exponent from a float in major R6RS Scheme implementations so that: v = f x b^e f - mantissa b - base e - exponent For example: 3.14 = 0.785 x 2^2 If it's ...
2
votes
4answers
153 views

shorthand for ((lambda () ))

Is there a shorthand in scheme for ((lambda () )) For example, instead of ((lambda () (define x 1) (display x))) I would love to be able to do something like (empty-lambda (define x ...
2
votes
1answer
92 views

difference between free-identifier=? and bound-identifier=?

Trying to understand free-identifier=? and bound-identifier=?. Can anyone give me equivalent code examples where using free-identifier=? would return true and using bound-identifier=? would return ...
2
votes
1answer
110 views

R6RS on dead trees?

Is it possible to buy the full R6RS in book form? It has, I believe, been published in the Journal of Functional Programming, but I do not subscribe to it. On the other hand, the full R6RS should be a ...
1
vote
1answer
57 views

How to write a macro that maintains local state?

This seems to work, it's a macro that expands to successive integers depending on how many times it has been expanded. ;; Library (test macro-state) (library (test macro-state) (export get-count ...
1
vote
1answer
71 views

ikarus implementation of vector-map

This bit of code is in Ikarus' implementation of vector-map: (let f ([p p] [v v] [i 0] [n (vector-length v)] [ac '()]) (cond [($fx= i n) (ls->vec ac n)] [else ...
1
vote
1answer
276 views

Redefining syntactic keywords in r6rs

How can I create a library called rnrs-modified which will make the following code display "Hello, world!"...? #!r6rs (import (rnrs-modified)) (display set!) or even this would be good (arguably ...
1
vote
1answer
220 views

How to make just part of a macro hygienic

I'd like to have a version of lambda, called lambda-r, from within which you can return. An example: (+ ((lambda-r () (return 1) 2)) 5) This would give the value 6. Although you might ...
0
votes
1answer
32 views

Exporting a populated hashtable from a library

Here's a library which exports a hashtable. The library also contains expressions which populate the hashtable: (library (abc-1) (export tbl) (import (rnrs)) (define tbl (make-eq-hashtable)) ...
0
votes
2answers
128 views

Scheme: returning copy of object

I'm new to the language and just starting out. I have been trying to do implement a function expr-returning obj that returns a Scheme expression that, when evaluated, will return a copy of obj, that ...
0
votes
1answer
199 views

Order of evaluation in scheme

I have a small problem in Scheme, but I can't go on before solving it. I have been googling this for the last 2 hours without any results. This is what works: (define obj1 (maak-object (coord 1 1) ...
0
votes
1answer
144 views

Racket: Why do all procedures have to be defined before the compiler sees them?

For example, take a look at this code (from tspl4): (define proc1 (lambda (x y) (proc2 y x))) If I run this as my program in scheme... #!r6rs (import (rnrs)) (define proc1 (lambda (x y) ...
0
votes
1answer
91 views

Do you have to use display to output stuff using r6rs?

Background: I am new to scheme, and am using DrScheme to write my programs. The following program outputs 12345 when I run the program as r5rs: 12345 However the following program outputs nothing ...