On Thu, Sep 17, 2015 at 9:09 AM, Ján Dolinský <[email protected]> wrote:
> Hello,
>
> Is a module name consisting of minus sign allowed ?
> E.g. my-new-module
>
> typing
>
> using my-new-module
>
> results in an error
> ERROR: syntax: invalid "using" statement
I think is allowed at AST level (i.e. when you manually construct an
AST with `symbol("my-new-module")` in it) but otherwise the parser
would limit it to the allowed identifier names[1].
[1]
http://julia.readthedocs.org/en/latest/manual/variables/#allowed-variable-names
>
> Thanks a lot,
> Jan