Hi,
I have two modules "keyboard" and "display" exporting some names with
export = all; This works fine.
I try to create a module importing all names of both at once.
I tried:
export = all;
import
aldisplay in 'display';
alkeyboard in 'keyboard';
But the imported names aren't exported. Is there a way to do this
without exporting every single imported name?
Thanks,
Martin