This works fine: ```julia using Distributed; @everywhere x = 2 ``` but ```julia import Distributed; Distributed.@everywhere x = 2 # ERROR: LoadError: UndefVarError: @everywhere not defined ``` gives an error.