Python/Rust like tuple destructuring assignment support: - Py: ```python a, b = 1, 2 ```` - Rust: ```rust let (a, b) = (1, 2) ```