Imports

Ellie has two kinds of imports:

Unnamed import

Imports anything public from module.

    import ellieStd;

    v age : int = 11;

Named import

Imports anything public from module, but with reference.

    import ellieStd as std;
    v age : std.int = 11;