Quick actions

cmd+k|ctrl+k

Navigation

Languages

Named arguments :trollface:

Snippet info

Language

D

Visibility

public

Author

rightfold

Created

2020-01-24T12:37:41Z

Updated

2020-01-24T12:37:41Z

import std.stdio;

int x;

void f(int x)
{
    writeln(.x);
}

void main()
{
    f(x=1);
}
INFO