On Fri, Apr 29, 2016 at 11:10 AM, Christoph Ortner <[email protected]> wrote: > Is there a mechanism to import a module under a different name, such as > > import LongModuleName as LMN > > something more elegant than > > import LongModuleName; LMN=LongModuleName > > ?
Note that you at least want `const LMN = ...` https://github.com/JuliaLang/julia/issues/1255 > > Thanks, > Christoph
