
23 May
2013
23 May
'13
6:46 a.m.
On 23 May 2013 11:54, Joachim Breitner
Hi,
Am Donnerstag, den 23.05.2013, 11:52 +0200 schrieb Bas van Dijk:
On 23 May 2013 11:26, Joachim Breitner
wrote: So you can get what you want by not depending on base, but rather have prelude-prime re-export all modules from base plus its own Preldue.
How would you re-export all base's modules from the prelude-prime package? I didn't know this was already possible.
manually...
you create a .hs file for every module in base, which imports the module in base (using a package-qualified import), gives it a qualified name and puts that name in the export list.
I see. Thanks for the clarification.