Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Where's Racket?

3 views
Skip to first unread message

Mark Carter

unread,
Jun 7, 2010, 12:17:32 PM6/7/10
to
I'm a little puzzled here. The Racket website seems to point to a
download of DrScheme 4.2.5. If I type the following example program:
#lang racket ; An echo server
(define listener (tcp-listen 12345))
(let echo-server ()
(define-values (in out) (tcp-accept listener))
(thread (lambda () (copy-port in out)
(close-output-port out)))
(echo-server))

in DrScheme, I obtain the response
Module Language: invalid module text
standard-module-name-resolver: collection not found: #<path:racket
\lang> in any of: (#<path:C:\Users\mcarter\AppData\Roaming\PLT Scheme
\4.2.5\collects> #<path:C:\Program Files\PLT\collects>)
Interactions disabled.

What gives? I'm using "Determine language from source".

Eli Barzilay

unread,
Jun 7, 2010, 2:36:15 PM6/7/10
to
Mark Carter <alt.m...@gmail.com> writes:

> I'm a little puzzled here. The Racket website seems to point to a

> download of DrScheme 4.2.5. [...]

It took a while to get all the little bits into place -- should be
working fine now.

--
((lambda (x) (x x)) (lambda (x) (x x))) Eli Barzilay:
http://barzilay.org/ Maze is Life!

Mark Carter

unread,
Jun 7, 2010, 3:54:56 PM6/7/10
to
On 7 June, 19:36, Eli Barzilay <e...@barzilay.org> wrote:

> It took a while to get all the little bits into place -- should be
> working fine now.

Ah, OK, seems to be fine now. I'm a Scheme newbie myself, and was
interested in assessing it for the creation of a dynamic website.

0 new messages