Re: sythetic procedure names

Subject: Re: sythetic procedure names
From: Ralf Kempkens <kempkens@xxxxxxxxxxx>
Date: Thu, 06 Apr 2000 15:37:02 +0200
In message <38EC8456.C083C27A@xxxxxxxxxxxx>you write:
>Hi,
>
>is there any way to get the value which is bound to a name if I have
>the name as a string value? (I don't care about dynamic, lexical or
>global-only context :-)
>
>The task is to write a function like this
>	(define (dispatch x y) ((string-append x "-" y)))

what about:

(define (dispatch x y) ((string-append (number->string x) "-" (number->string 
y))))

(If I got you right.)

Regards

Ralf



 DSSSList info and archive:  http://www.mulberrytech.com/dsssl/dssslist


Current Thread