Re: [racket-dev] regexp-split produces immutable cons when rnrs/base-6 is required

2011-11-28 Thread Marijn
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi Neil, On 25-11-11 14:47, Neil Van Dyke wrote: > As an immediate solution, I suggest simply not trying to use R6RS > compatibility libraries with Racket, and instead just use the > Racket language. Spend your energy on your application. (I don't

Re: [racket-dev] regexp-split produces immutable cons when rnrs/base-6 is required

2011-11-25 Thread Neil Van Dyke
As an immediate solution, I suggest simply not trying to use R6RS compatibility libraries with Racket, and instead just use the Racket language. Spend your energy on your application. (I don't want to get into why right now, but my book will have an entire section or chapter entitled "Don't U

Re: [racket-dev] regexp-split produces immutable cons when rnrs/base-6 is required

2011-11-25 Thread Sam Tobin-Hochstadt
On Fri, Nov 25, 2011 at 8:15 AM, Marijn wrote: > > regexp-split produces an immutable cons when rnrs/base-6 is required: `regexp-split' is still being obtained from `racket/base' in this example: > $ echo "m" | racket -e '(require rnrs/base-6) (car (regexp-split " +" > (read-line (current-input-

[racket-dev] regexp-split produces immutable cons when rnrs/base-6 is required

2011-11-25 Thread Marijn
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, regexp-split produces an immutable cons when rnrs/base-6 is required: $ echo "m" | racket -e '(require rnrs/base-6) (car (regexp-split " +" (read-line (current-input-port 'mcar: expects argument of type ; given '("m") but $ echo "m" | racke