claro-lang
claro-lang copied to clipboard
Named Function Args
Should be able to do the following:
consumer foo(start: int, end: int, interval: int) {
...
}
foo(start = 0, end = 99, interval = 3);