From: Dave Thomas Date: 2002-07-18T01:01:36+09:00 Subject: Re: Syntax "surprise" ts writes: > do_something 1,2,3, > puts "done" > ^D > done > [1, 2, 3, nil] Agreed - the poster though was asking for trailing commas to be permitted in argument lists do_somthing(1,2,3,) would be a call with three parameters. I was suggesting that if this was allowed, it could only work if the parameter list was parenthesized, as there would otherwise be the ambiguity shown above. Dave