Re: [racket-users] r6rs use

2016-04-02 Thread Jens Axel Søgaard
I am no R6RS expert (so I might have missed something), but I believe there are two issues: - there is no repl specified in r6rs (only top level programs) (implementation can of course provide a repl, but they don't have to) - the function sort is supposed to be unbound

[racket-users] r6rs use

2016-04-02 Thread Damien Mattei
Hi, i have a code that works well in #lang racket and also with other scheme compilers with minor changes,Bigloo,MIT scheme, but it does not work with #!r6rs i do not know why,here it is (some extract): #!r6rs (import (rnrs)) ... ;; sort operands in a logic expression ;;