That's still three superfluous words. I have to agree with abritinthebay, especially when comparing with Python's destructuring, which doesn't even need brackets:
a, b, c is a tuple. Parentheses can be omitted, same as in some ML dialects:
# let a, b, c = 10, 11, 22;;
val a : int = 10
val b : int = 11
val c : int = 22
# a, b, c;;
- : int * int * int = (10, 11, 22)
# (a, b, c);;
- : int * int * int = (10, 11, 22)