Re: [julia-users] import Module as ...

2016-04-30 Thread Christoph Ortner
thanks - good to see the issue.

Re: [julia-users] import Module as ...

2016-04-29 Thread Stefan Karpinski
https://github.com/JuliaLang/julia/issues/1255 On Fri, Apr 29, 2016 at 11:16 AM, Stefan Karpinski wrote: > No, but we should have such a feature. > > On Fri, Apr 29, 2016 at 11:10 AM, Christoph Ortner < > christophortn...@gmail.com> wrote: > >> Is there a mechanism to

Re: [julia-users] import Module as ...

2016-04-29 Thread Stefan Karpinski
No, but we should have such a feature. On Fri, Apr 29, 2016 at 11:10 AM, Christoph Ortner < christophortn...@gmail.com> 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;

Re: [julia-users] import Module as ...

2016-04-29 Thread Yichao Yu
On Fri, Apr 29, 2016 at 11:10 AM, Christoph Ortner 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

[julia-users] import Module as ...

2016-04-29 Thread Christoph Ortner
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 ? Thanks, Christoph