Discussion Thread: DIP 1030--Named Arguments--Final Review

Walter Bright newshound2 at digitalmars.com
Thu May 14 05:19:21 UTC 2020


On 5/13/2020 12:31 PM, Steven Schveighoffer wrote:
> On 5/13/20 3:30 PM, Walter Bright wrote:
>> In D, we do:
>>     void copy(string, string destination);
> And how does the implementation of copy use that first parameter?

----- test.di -----
void copy(string, string destination);

----- test.d ------
void copy(string src, string destination)
{
     ...
}




More information about the Digitalmars-d mailing list