Avatar
@swift-main func f(a: Int, b: String..., c: String...) { print("b", b, "c", c) } let a = f(a:b:c:) a(1, "", "", "") (edited)