Bonjour,
i have a question about Racket's package.
First due to another answer in a thread i have to say,once and only,that i do not respond to false answer about any of my project that would lead to polemic's long and unecessary discussion.
I'm not here to have polemic discussion, this is not my interest.
(Even more when solution are written in non standart scheme (not RnRS) that i can not reuse in another scheme implementation and are of no use for me as i intend to write portable code.)
Now my question about module in https://pkgs.racket-lang.org/ .
i have a directory, supposing name foo containing bar.rkt which is a racket module.
when i download it from https://pkgs.racket-lang.org/ i can use it only this way:
(require foo/bar)
this works. But it has the constrainst to be directory/filename . For example if i convert the project in R6RS i will use (import (foo bar) ...
i just want like any other module to be able to do :
(require foo) in Racket
or in R6RS (import (foo) ...
i find this is working , as raco require the filename of module to be always main.rkt.
That is if i rename bar.rkt in main.rkt it works.
but is there a way to change that, i want to keep my custom project main filename to bar.rkt for example ,not main.rkt.
Is there a way to configure the package ,in info.rkt file ? or anywhere to do that?
Regards,