[racket-users] Re: Eval namespace revisited ...again

2015-09-26 Thread Jukka Tuominen
In case it should be of help to anyone, using #lang racket/load solved the problems and things run smoothly now. br, jukka > Hi all, > > I'm working on a generic solution to distributed computing/ IoT/ M2M/ > scheduled task handling etc. basing on messaging. The emphasis is on > usability so

Re: [racket-users] Re: Eval namespace revisited ...again

2015-09-26 Thread Jens Axel Søgaard
An alternative to racket/load if you need something easier to control: #lang racket ;; Make a new namespace (define custom-namespace (make-base-empty-namespace)) ;; Fill it with relevant bindings (parameterize ([current-namespace custom-namespace]) (namespace-require ''#%kernel)

Re: [racket-users] Re: Eval namespace revisited ...again

2015-09-26 Thread Jukka Tuominen
Thank you Jens, that's a very helpful example. br, jukka > An alternative to racket/load if you need something easier to control: > > #lang racket > > ;; Make a new namespace > (define custom-namespace (make-base-empty-namespace)) > > ;; Fill it with relevant bindings > (parameterize