Hello, why there are no named arguments for functions like, for example, in kotlin i.e.:

int sum(in int a, in int b) {
    return a + b;
}

sum(a = 1, b = 2);

Reply via email to