To import characters from a module, you need to either list them or use a wildcard to import everything. That is, I can use either use module::{SomeSymbol, SomeOtherSymbol};, oruse module::*;
However, when importing from the top-level module the basket root, wildcards do not work. I can use either use {SomeSymbol, SomeOtherSymbol};, or use ::{SomeSymbol, SomeOtherSymbol}};, but neither use *;, nor use ::*;work.
Why does it not work and how to import everything from the root of the box?
Simon source
share