Re: Handling modules with same name (from library and from current project)

2025-01-05 Thread Nala Ginrut
Hi Zelphir! For new library, I would recommend to always set a namespace with an unique name directory. However, if you want to reuse an existing library in minimum cost without changing anything, I think renamer in Guile/RnRS module system can help. Personally, I treat the latter a workaround

Re: Handling modules with same name (from library and from current project)

2025-01-05 Thread Zelphir Kaltstahl
Hi Nala! Thank you for your response! I tried it and got that structure working. As far as I see the rules are as follows: (1) prefix with something library specific, so that there are no conflicts with other projects/libraries (2) In order to not have all the utility modules on the top lev

Re: Handling modules with same name (from library and from current project)

2025-01-05 Thread Nala Ginrut
> How do you avoid these module name conflicts? How do you make sure that only libraries themselves use their own helper function modules? If I understand you correctly. I think you should add a namespace as directory inside lib dir, pick your own unique project name as the namespace, say mylib, a

Handling modules with same name (from library and from current project)

2025-01-05 Thread Zelphir Kaltstahl
Hello Guile Users! I have a question regarding an issue I run into again and again, and have not found an adequate solution for yet. I want to know how you are handling this, what your solution is. (1) recent story: I have a website, that I wrote manually in pure HTML and CSS. It does what i