Re: [racket-users] rename-in issue

2020-04-09 Thread Lucas Liendo
Thanks all for the suggestions and for pointing out that `interface-version` was the conflict, I didn't carefully read the message and assumed `make` was the culprit! On Thu, Apr 9, 2020 at 10:33 PM Bogdan Popa wrote: > > I'd recommend using `prefix-in' with the dispatcher modules, as that > avoi

Re: [racket-users] rename-in issue

2020-04-09 Thread Bogdan Popa
I'd recommend using `prefix-in' with the dispatcher modules, as that avoids these types of issues altogether: (require (prefix-in files: web-server/dispatchers/dispatch-files) (prefix-in sequencer: web-server/dispatchers/dispatch-sequencer)) (sequencer:make (files:make .

Re: [racket-users] rename-in issue

2020-04-09 Thread Jens Axel Søgaard
Den tor. 9. apr. 2020 kl. 11.04 skrev Lucas Liendo : > Hi everyone! I've a very dumb question (as still not very experienced > Racket programmer), I'm doing the following: > > (require net/url > web-server/dispatchers/filesystem-map > (rename-in web-server/dispatchers/dispatch-fi

Re: [racket-users] rename-in issue

2020-04-09 Thread Sorawee Porncharoenwase
There are two colliding names. make and interface-version. As shown in the error message, you fixed one but not the other. (require net/url web-server/dispatchers/filesystem-map web-server/dispatchers/dispatch-files (rename-in web-server/dispatchers/dispatch-sequencer

[racket-users] rename-in issue

2020-04-09 Thread Lucas Liendo
Hi everyone! I've a very dumb question (as still not very experienced Racket programmer), I'm doing the following: (require net/url web-server/dispatchers/filesystem-map (rename-in web-server/dispatchers/dispatch-files (make dispatch-files)) (rename-i