Did we discuss optional or named parameters wrt constructors?
type v {
int x = 0;
int y = 0;
}
e2 = v(y=1);
On 02/04/2015 11:14 AM, Tim Armstrong wrote:
> type foo {
> int x;
> int y;
> }
>
> foo bar;
> bar.x = 1;
> bar.y = 2;
--
Justin M Wozniak