[racket-users] Re: Trying to understand the module system.

2018-08-07 Thread Alex Gian
After some deliberation, and consultation with heads wiser than my own, I have decided to abandon the idea of porting the "rule-system" directly. There was no point, really. It relies on too many techniques that were hacks, albeit very clever ones, in their time, to make up for tools that tod

[racket-users] Re: Trying to understand the module system.

2018-08-04 Thread Alex Gian
In fact, even this (module polynomial racket (require "pcf.rkt" "fpf.rkt" "rcf.rkt" "pcf-fpf.rkt") (provide (all-from-out "pcf.rkt" "fpf.rkt" "rcf.rkt" "pcf-fpf.rkt")) ) (require 'polynomial) (define ns (module->namespace ''polynomial)) (eval '(poly/make-from-dense 1 '(1 -1)) ns) which is a