[racket] want to pass argument via terminal in linux

From: Danny Yoo (dyoo at hashcollision.org)
Date: Wed Mar 20 15:41:08 EDT 2013

On Wed, Mar 20, 2013 at 1:30 PM, J. Ian Johnson <ianj at ccs.neu.edu> wrote:
> You'll want to look at dynamic-require for this. Require forms do not accept arbitrary Racket expressions because they are used at compile time.


Hi Boshra,

See the very bottom of:

    http://docs.racket-lang.org/guide/mk-namespace.html

for an example of dynamic-require in action.


It sounds like you'll be doing some dynamic evaluation, in which case
you probably will want to scan through:

    http://docs.racket-lang.org/guide/reflection.html

to get a better feel for the issues involved in dynamic evaluation.

Posted on the users mailing list.