DIP 1019--Named Arguments Lite--Community Review Round 2

zoujiaqing zoujiaqing at gmail.com
Wed Jun 5 14:40:23 UTC 2019


On Wednesday, 5 June 2019 at 13:03:26 UTC, Mike Parker wrote:
> This is the feedback thread for the second round of Community 
> Review for DIP 1019, "Named Arguments Lite":
>
> [...]

Thanks, I wanted this:

```D

void fun(int a = 0, string b = "B", short c = 8080, string d = 
"D");

void main()
{
     fun(a: 1, d: "ddd");
     fun(b: "bbb", d: "ddd");
}
```


More information about the Digitalmars-d mailing list