Anonymous modules

How would you name anything inside of such a module from outside? If you don’t need the ability to name anything inside of the module, you can already use

const _: () = {
    // definitions, trait impls, etc…
};
17 Likes