Unqualified imports

Normally functions from other modules are used in a qualified fashion, with the module qualifier before function name. For example, io.println("Hello!").

通常、他のモジュールの関数は、関数名の前にモジュール修飾子を付けて修飾された形で使用されます。例えば、io.println("Hello!") のようになります。

It is also possible to specify a list of functions to import from a module in an unqualified fashion, such as the println function in the code editor. Because it has been imported like this it can be referred to as just println.

コードエディタの println 関数のように、モジュールからインポートする関数のリストを修飾無しで指定することもできます。このようにインポートされた関数は、単に println として参照することができます。

Generally it is best to use qualified imports, as this makes it clear where the function is defined, making the code easier to read.

一般的には、修飾されたインポートを使用するのがベストです。これにより関数がどこで定義されているかが明確になり、コードが読みやすくなります。