claro-lang icon indicating copy to clipboard operation
claro-lang copied to clipboard

Named Function Args

Open JasonSteving99 opened this issue 2 years ago • 0 comments

Should be able to do the following:

consumer foo(start: int, end: int, interval: int) {
    ...
}

foo(start = 0, end = 99, interval = 3);

JasonSteving99 avatar Mar 29 '22 02:03 JasonSteving99