On 16 April 2013 11:28, John Mija <[email protected]> wrote:
> Since the low level libraries usually have many constants, it would be great
> whether multiple constants and variables could be grouped using parenthesis.
>
> Now:
>
> static a = 1;
> static b = 35;
> static c = 120;
>
> Using parenthesis:
>
> static (
>     a = 1;
>     b = 35;
>     c = 120;
> )

Wouldn't `static a=1, b=35, c=120;` make more sense and match `let
a=1, b=25, c=120;'?

Alex
_______________________________________________
Rust-dev mailing list
[email protected]
https://mail.mozilla.org/listinfo/rust-dev

Reply via email to