Re: Using local import path

2016-09-09 Thread pineapple via Digitalmars-d-learn
On Friday, 9 September 2016 at 09:43:15 UTC, O-N-S wrote: On Friday, 9 September 2016 at 09:31:54 UTC, pineapple wrote: On Friday, 9 September 2016 at 08:25:40 UTC, rikki cattermole wrote: TLDR: no you cannot do what you were thinking. Seems like something one ought to be able to do, though.

Re: Using local import path

2016-09-09 Thread O-N-S via Digitalmars-d-learn
On Friday, 9 September 2016 at 09:31:54 UTC, pineapple wrote: On Friday, 9 September 2016 at 08:25:40 UTC, rikki cattermole wrote: TLDR: no you cannot do what you were thinking. Seems like something one ought to be able to do, though. DIP time? Where can I find DIP? Here?

Re: Using local import path

2016-09-09 Thread pineapple via Digitalmars-d-learn
On Friday, 9 September 2016 at 08:25:40 UTC, rikki cattermole wrote: TLDR: no you cannot do what you were thinking. Seems like something one ought to be able to do, though. DIP time?

Re: Using local import path

2016-09-09 Thread rikki cattermole via Digitalmars-d-learn
On 09/09/2016 8:08 PM, O/N/S wrote: Hi Example: I have a module called "a.b.c"; and a second module called "a.b.c.d.e"; For importing i can use import a.b.c; import a.b.c.d.e; or with local names import abc = a.b.c; import abcde = a.b.c.d.e; Question: Is it possible to use