>
> I propose to change the current import syntax so that there can only be 
> one import statement per module, and that it looks like the following:
>
> ```
> imports (
>     Module.A,
>     Module.B exposing (..),
>     Module.C as Name
> )
> ```
>

This one, I feel a lot better about.  I could also see introducing nesting 
as solving your other proposal in a slightly roundabout way, but this might 
make other people's eyes twitch:

imports (
    Module(
        A,
        B exposing (..),
        C as Name
    ),
    OtherModule exposing (giggity)
)

How mad is everyone at that?

-- 
You received this message because you are subscribed to the Google Groups "Elm 
Discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to