The 6th Revised Report on the Algorithmic Language Scheme.
2
votes
2answers
57 views
R6RS Library body: definition after expression
Consider the following code:
#!r6rs
(library
(test)
(export)
(import (rnrs))
(define a 5)
(begin
(define b 4)
(+ 3 b))
'cont
(define c 5)
'done)
From the R6RS Report 7.1:
A ...
0
votes
1answer
30 views
Datum-skipping comment “#;” while making parser for R6RS with ANTLR4
I'm trying to write lexer/parser for R6RS, and I'm stuck with datum-skipping comment
Here is some part of my lexer/parser rules:
BOOLEAN: '#t' | '#f' | '#T' | '#F';
NUMBER: DIGIT+; // TODO: ...
0
votes
0answers
25 views
Why is `process` not available in a library using Petite Chez Scheme?
I am writing an R6RS library to use the GTK Server with Petite Chez Scheme. I use process to start the server process and get its stdin and stdout ports:
(let ((ports (process "gtk-server ...
5
votes
1answer
134 views
How to catch syntax exception
I want to extend srfi-78 by a macro that tests for syntax exception. I want something like this:
#! /usr/bin/env scheme-script
#!r6rs
(import (rnrs) (srfi :78 lightweight-testing))
; the macros I ...
0
votes
1answer
43 views
How to correctly implement object inheritance in Scheme
As exercise, I'm trying to implement a small object oriented program, with 2 classes:
point1d: 1 attribute (x), getter and setter
point2d: inherits from point1d, add a new attribute (y) and its ...
1
vote
1answer
51 views
Selectors in Scheme R6RS
I'm reading a old book
Simply Scheme: Introducing Computer Science
you can find it here .
In the fifth section it introduces the "selectors", operators like the following:
(first 'abcd) ;-> ...
0
votes
2answers
51 views
Print the name of a variable
Is it possible in Scheme R6RS to print the name of a variable? I mean:
(define (f)
(lambda (arg)
(display ( *name* arg))))
Such that:
(define my-var 3)
(f my-var) ; => displays the ...
0
votes
1answer
59 views
How to get the list of all the symbols exported by a library?
Is there a method to get the list of all the method exported by a library?
6
votes
1answer
780 views
Differences between Guile Scheme and Standard Scheme (in Racket IDE)?
I've got a bunch of "legacy" Guile Scheme code that I want to get running in the Racket Scheme IDE. There appear to be enough differences to make this a non-trivial exercise. (My level of Scheme ...
4
votes
1answer
81 views
Code a continuation that does nothing
Maybe my question has a really simple answer, but I cannot find it.
In Scheme R6RS how can I built a continuation that does nothing and requires any arguments?
My goal is to have a continuation, ...
2
votes
2answers
65 views
equal? and record-type
Suppose I have the following Scheme (R6RS) code:
(define-record-type typeA
(fields
(mutable A)))
and that I create two records:
(define X (make-typeA 123))
(define Y (make-typeA 123))
I can't ...
4
votes
2answers
70 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 ...
2
votes
4answers
292 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 ...
1
vote
1answer
75 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 ...
5
votes
1answer
217 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 ...
1
vote
1answer
112 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
...
5
votes
2answers
228 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 ...
0
votes
1answer
38 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))
...
7
votes
1answer
1k 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?
0
votes
2answers
239 views
How do I return a copy of an object?
I need to implement a function of one argument -- obj -- that returns a Scheme expression that, when evaluated, will return a copy of obj.
Any ideas on how to proceed with the problem?
0
votes
1answer
323 views
Order of evaluation in scheme
This is what works:
(define obj1 (maak-object (coord 1 1) #f #f #t))
(set! karaktersenobjectenlijst (append karaktersenobjectenlijst
(list (list 'object obj1)))))
...
3
votes
2answers
396 views
Advantages of different Scheme R6RS implementations [closed]
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?
2
votes
1answer
214 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 ...
1
vote
1answer
337 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 ...
6
votes
6answers
1k 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 ...
1
vote
1answer
237 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 ...
16
votes
6answers
3k 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.
0
votes
1answer
187 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
136 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 ...
3
votes
1answer
152 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 ...