> Is this (A) mistyping the function open in module `std::io::file` or is it (B) the global/local `file` is missing from the current scope?

D uses a spell checker for undefined identifiers, and the dictionary is all the identifiers in scope. It has about a 50% success rate in guessing which identifier was meant, which is quite good.

> Also, "io", "file", "random" etc are commonly used variables, so the issue with shadowing is real.

If the same identifier is accessible through multiple lookup paths, an error is issued. If a local variable shadows a variable in an outer scope, and error is issued.

We've developed this over several years, and it works quite well.

Path shortening can be done with:

    alias open = file.open;
or:

    import io: open;

If I would have liked, I could have done something like `import std::io::file as file;` but I noticed that we keep getting this issue that we’re renaming things all of the time, and usually in the same way. This is why path shortening is there. To directly get something like the informal `file_open` namespacing in C programs.

Standardisation of code and examples across codebases is a nice result of this too. This makes the code easier to learn and share