in C it is possible to use statements like
double a, b, c, d, e, f, g ;
rather than
double a;
double b;
...
double g;
I frequently find the former notation more convenient than the latter, is
there anyway to replicate it in Julia? Specifically, I want to avoid typing
something like this.
type Config
a::Float64
b::Float64
...
g::Float64
end
