Is there any reason Swift can't allow a trailing comma in constructs like this:

guard
    let a = ...,
    let b = ...,
    let c = ...,
else
{
}

doing so makes it a bit easier to rearrange lines, and is similar to the 
trailing comma allowed inside array and dictionary definitions:

let a = [ 1, 2, 3, ]

TIA,

-- 
Rick Mann
[email protected]


_______________________________________________
swift-evolution mailing list
[email protected]
https://lists.swift.org/mailman/listinfo/swift-evolution

Reply via email to