f50377986 ^
1 2 3 4 5 6 7 8 9 10 11 12 13 14
discard """ output: ''' Using x: 2 Using y: 2 ''' """ proc foo(x: int) = echo "Using x: ", x proc foo(y: int) = echo "Using y: ", y foo(x = 2) foo(y = 2)