Golo does not have star imports like in Java. Imports are only used at runtime as Golo tries to resolve names of types, functions, and so on.
You must think of import
statements as a notational shortcut, nothing else. Golo tries to resolve
a name as-is, then tries to complete with every import until a match is found.
import java.util import java.util.concurrent.AtomicInteger # (...) # Direct resolution at runtime let foo = java.util.LinkedList() # Resolution with the 1st import let foo = LinkedList() # Resolution with the 2nd import let foo = AtomicInteger(666)