[racket] want to pass argument via terminal in linux
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.